@import url('https://fonts.googleapis.com/css2?family=Genos:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Genos", sans-serif;
    letter-spacing: 0.04em;
}


body {
    background: #f5f5f5;
    color: #111;
    position: relative;
    z-index: 0;
}

/* Structural Side Lines */
body::before, body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.04); /* Barely visible, slightly darker than background */
    z-index: -1; /* Behind all content and navbar, but above body background */
    pointer-events: none;
}

body::before {
    left: 60px;
}

body::after {
    right: 60px;
}

#splash {

  position: fixed;
  inset: 0;

  background: white;

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

}

.splash-logo-box {
  /* Shrink-wraps to the sizer's actual rendered box below — no width:100% here,
     otherwise this box (and the slices absolutely positioned inside it) would be
     wider than the visible logo content whenever max-height (not max-width) is
     the binding constraint, throwing off every slice's pixel position. */
  position: relative;
  display: inline-block;
  max-width: 80vw;
  max-height: 120px;
}

.splash-logo-sizer {
  /* width/height both auto (not 100%) so the browser's replaced-element sizing
     picks whichever of max-width/max-height binds AND recomputes the other axis
     to preserve aspect ratio — the element's own box then exactly equals its
     visible content, with no object-fit letterboxing to account for. */
  display: block;
  max-width: 80vw;
  max-height: 120px;
  width: auto;
  height: auto;
  visibility: hidden; /* used only to size the box responsively, never painted */
}

.splash-slices {
  position: absolute;
  inset: 0;
}

.splash-slice {
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}

.splash-slice > span {
  display: block;
  height: 100%;
  background-image: url("Group_64.png");
  background-repeat: no-repeat;
}

.splash-slice.sweep {
  opacity: 1; /* revealed by clip-path, not opacity */
}



/* NAVBAR */

.navbar {
    width: 100%;
    padding: 20px 80px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    background: #f5f5f5; /* Matches body background */
    border-bottom: 1px solid rgba(0,0,0,0.1); /* Structural grid border */
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(10px);
}

.navbar img {
    transition: opacity 0.5s ease;
}
.navbar img.fade-out {
    opacity: 0;
    pointer-events: none;
}


.logo {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: "Genos", sans-serif;
}


nav a {
    margin-left: 40px;
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0%;
    height: 2px;
    background: #3B548B; /* Updated to match new orange accent */

    transition: 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* MACHINE PAGE */
.machine-hero {
    padding: 150px 60px 80px;
    background-color: #f5f5f5;
    text-align: center;
}

.machine-hero h1 {
    font-size: 80px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.machine-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #444;
    line-height: 1.6;
}

.machine-list-container {
    padding: 100px 60px;
    background: white;
    max-width: 1400px;
    margin: 0 auto;
}

.machine-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.machine-row.reverse {
    flex-direction: row-reverse;
}

.machine-image {
    flex: 1;
}

.machine-image .image-placeholder {
    width: 100%;
    height: 450px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #aaa;
    border: 2px dashed #ccc;
    transition: transform 0.3s ease;
}

.machine-image .image-placeholder:hover {
    transform: scale(1.02);
}

.machine-info {
    flex: 1;
}

.machine-info h2 {
    font-size: 48px;
    color: #111;
    margin-bottom: 20px;
}

.machine-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.machine-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.machine-specs li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.machine-specs li::before {
    content: "✓";
    color: #3B548B;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 900px) {
    .machine-row, .machine-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .machine-hero h1 {
        font-size: 50px;
    }
}

/* ===================== */
/* HERO SECTION          */
/* ===================== */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 180px 80px 100px 80px; /* Aligns with sidelines, space for navbar */
}

.hero-left {
    flex: 1;
}

.hero-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #888;
}

.hero-left h1 {
    font-size: 100px;
    font-weight: 400;
    line-height: 0.95;
    font-family: "Genos", sans-serif;
    letter-spacing: -1px;
    color: #111;
}

.hero-right {
    width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Anchors the paragraph to bottom of huge text */
}

.hero-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.hero-right button {
    align-self: flex-start;
    padding: 16px 32px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-right button:hover {
    background: #3B548B;
}

/* ===================== */
/* HERO IMAGE SECTION    */
/* ===================== */
.image-section {
    width: 100%;
    height: 700px;
    padding: 0 60px;
    overflow: hidden; /* Image will snap to structural sidelines */
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.image-section img {
    width: 100%;
    height: 850px; /* Taller than container for parallax travel */
    object-fit: cover;
    display: block; /* Removes bottom spacing */
    will-change: transform;
}

@media (max-width: 1000px) {
    .hero { flex-direction: column; padding: 140px 20px 60px 20px; }
    .hero-left h1 { font-size: 70px; margin-bottom: 40px; }
    .hero-right { width: 100%; }
    .image-section { padding: 0; border: none; }
    .image-section img { height: 400px; }
}


/* ===================== */
/* ABOUT SECTION (GRID)  */
/* ===================== */

.about {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.about-box {
    position: relative;
    padding: 80px; /* Increased padding inside the box */
    border-right: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 700px;
    background: transparent;
}

.about-box:last-child {
    border-right: none;
}

/* Grid background for technical feel */
.about-box.has-grid {
    background-image: 
        radial-gradient(rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Top Left/Right Labels */
.about-label {
    position: absolute;
    top: 60px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
}

.about-box:first-child .about-label {
    left: 80px; /* Moved away from the very left edge */
}

.about-box:last-child .about-label {
    right: 80px; /* Align to the right edge for the right box */
}

/* Center Content */
.about-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Alignment based on box position */
.about-box:first-child .about-content {
    align-items: flex-start;
    text-align: left;
}

.about-box:last-child .about-content {
    align-items: flex-end;
    text-align: right;
}

.about-huge {
    font-size: 100px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: "Genos", sans-serif;
    color: #111;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 450px;
}

.about-specs {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* Align specs accordingly */
.about-box:first-child .about-specs {
    text-align: left;
}
.about-box:last-child .about-specs {
    text-align: right;
}

.about-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.about-box:last-child .about-specs span {
    flex-direction: row-reverse; /* Flip dot and text for right align */
}

.about-specs span::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
}
.spec-orange::before { background-color: #3B548B; }
.spec-grey::before { background-color: #999; }

/* Image in box */
.about-box img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

/* Bottom Buttons */
.about-btn-ghost {
    position: absolute;
    bottom: 60px;
    padding: 12px 0;
    background: transparent;
    border: none;
    color: #999;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.about-box:first-child .about-btn-ghost { left: 80px; }
.about-box:last-child .about-btn-ghost { right: 80px; }

.about-btn-ghost:hover {
    color: #111;
}

.about-btn-solid {
    position: absolute;
    bottom: 60px;
    padding: 14px 28px;
    background: #111;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.about-box:first-child .about-btn-solid { left: 80px; }
.about-box:last-child .about-btn-solid { right: 80px; }

.about-btn-solid:hover {
    background: #3B548B;
    color: #fff;
}

@media (max-width: 1000px) {
    .about { grid-template-columns: 1fr; }
    .about-box { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); min-height: 500px; padding: 40px; }
    .about-label { top: 40px; }
    .about-box:first-child .about-label, .about-box:last-child .about-label { left: 40px; right: auto; }
    .about-btn-ghost, .about-btn-solid { bottom: 40px; }
    .about-box:first-child .about-btn-ghost, .about-box:last-child .about-btn-ghost,
    .about-box:first-child .about-btn-solid, .about-box:last-child .about-btn-solid { left: 40px; right: auto; }
    .about-box:first-child .about-content, .about-box:last-child .about-content { align-items: flex-start; text-align: left; }
    .about-huge { font-size: 70px; }
    .about-box:last-child .about-specs span { flex-direction: row; }
}




/* ===================== */
/* FEATURES SECTION      */
/* ===================== */

.features {
    width: 100%;
    padding: 0 60px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.features-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.features-top h2 {
    font-size: 48px;
    width: 50%;
    font-weight: 500;
}

.features-top p {
    width: 350px;
    color: #444;
    line-height: 1.6;
}

/* CARDS GRID */
.features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.card {
    padding: 60px 40px 60px 20px;
    border-right: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.material-card:hover {
    background-color: #3B548B;
    color: white;
}

.material-card:hover h3,
.material-card:hover p,
.material-card:hover span {
    color: white;
}

.card:last-child {
    border-right: none;
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 30px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card span {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.card p {
    font-size: 14px;
    margin: 20px 0 40px;
    line-height: 1.6;
    color: #444;
    flex-grow: 1; /* Pushes button to bottom if heights differ */
    transition: color 0.3s ease;
}

.card button {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.2);
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.card button:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

@media (max-width: 1000px) {
    .features-top {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        padding: 60px 20px;
    }
    .features-top h2 { width: 100%; font-size: 36px; }
    .features-top p { width: 100%; }
    .features-cards { grid-template-columns: 1fr; }
    .card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding: 40px 20px; }
    .card:last-child { border-bottom: none; }
}














/* ===================== */
/* CONSULT SECTION       */
/* ===================== */
.consult {
    width: 100%;
    padding: 0 60px; /* Snaps to structural side lines */
    border-top: 1px solid rgba(0,0,0,0.1);
}

.consult-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 120px 20px 60px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.consult-top h1 {
    font-size: 100px;
    font-weight: 400;
    font-family: "Genos", sans-serif;
    line-height: 0.85;
    letter-spacing: -1px;
    color: #111;
}

.consult-top p {
    width: 400px;
    line-height: 1.8;
    color: #444;
    font-size: 16px;
    margin-bottom: 10px;
}

.consult-line {
    display: none; /* Replaced by grid borders */
}

.consult-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.consult-left {
    padding: 60px 40px 60px 20px;
    border-right: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.consult-left h2 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 40px;
    font-weight: 500;
}

.row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.row input {
    flex: 1;
}

.consult-left input,
.consult-left textarea {
    width: 100%;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.2);
    margin-bottom: 20px;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
    color: #111;
}

.consult-left input:focus,
.consult-left textarea:focus {
    border-color: #111;
}

.consult-left textarea {
    height: 150px;
    resize: none;
}

.consult-left button {
    align-self: flex-start;
    padding: 16px 40px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

.consult-left button:hover {
    background: #3B548B;
}

.consult-right {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.consult-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

@media (max-width: 1000px) {
    .consult-top { flex-direction: column; align-items: flex-start; gap: 30px; padding: 60px 20px; }
    .consult-top h1 { font-size: 60px; }
    .consult-top p { width: 100%; }
    .consult-content { grid-template-columns: 1fr; }
    .consult-left { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding: 40px 20px; }
    .consult-right { padding: 40px 20px; }
}




.subscribe-row {

    display: flex;
    align-items: center;
    gap: 20px;

}


.check {

    display: flex;
    align-items: center;
    gap: 10px;

}


.contact-left button {

    padding: 12px 30px;
    border-radius: 40px;
    border: 1px solid black;
    background: transparent;
    cursor: pointer;

}



/* RIGHT */

.contact-right {

    width: 30%;
    line-height: 1.8;

}


.social span {

    margin-right: 15px;
    font-weight: bold;
}



/* ===================== */
/* NEW FOOTER            */
/* ===================== */
.footer {
    width: 100%;
    padding: 0 60px; /* Aligns with side lines */
    background: transparent; /* Allows #f5f5f5 to show */
    font-size: 14px;
    color: #444;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-col {
    padding: 60px 40px;
}

.footer-col:first-child {
    padding-left: 20px;
}

.footer-col:last-child {
    padding-right: 0;
    border-right: 1px solid rgba(0,0,0,0.1);
}

.footer-col:last-child {
    border-right: none;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #111;
}

.col-brand p {
    margin-top: 20px;
    line-height: 1.6;
}

.col-pages ul {
    list-style: none;
}

.col-pages li {
    margin-bottom: 15px;
}

.col-pages a {
    text-decoration: none;
    color: inherit;
}

.col-contact p {
    margin-bottom: 15px;
}

.subscribe-form input[type="email"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    padding: 10px 0;
    margin-bottom: 20px;
    outline: none;
    font-family: inherit;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 30px;
}

.consent input {
    margin-top: 3px;
    cursor: pointer;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
    transition: 0.3s ease;
}

.social-icon:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    font-size: 13px;
    color: #777;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 1000px) {
    .footer {
        padding: 0 20px;
    }
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-col {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 40px 20px;
    }
    .footer-col:last-child {
        border-bottom: none;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 30px 20px;
    }
}


button {
    transition: 0.3s ease;
}

button:hover {
    background: black;
    color: white;
}














/* ========================= */
/* MOBILE MENU & HAMBURGER   */
/* ========================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 10000;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #111;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    width: 33px;
    background: #3B548B; /* Orange close button */
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    width: 33px;
    background: #3B548B;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f5f5f5; /* Match body */
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu-grid {
    margin-top: 80px; /* Space for navbar */
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px; /* Aligns with mobile grid lines */
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    transition: 0.3s ease;
}

.mobile-link:hover {
    background: rgba(0,0,0,0.03);
}

.mobile-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3B548B;
    margin-bottom: 10px;
}

.mobile-link h2 {
    font-family: "Genos", sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #111;
    letter-spacing: -1px;
}

/* ========================= */
/* RESPONSIVE Overhaul       */
/* ========================= */

@media (max-width: 1000px) {

    /* Update Grid Lines */
    body::before { left: 20px; }
    body::after { right: 20px; }

    /* Hide standard nav links, show hamburger */
    .navbar nav { display: none; }
    .hamburger { display: flex; }
    
    .navbar {
        padding: 20px; /* Fills space, text aligns at 20px */
    }
    .logo {
        margin-left: 0;
        font-size: 20px;
    }

    /* GLOBAL PADDINGS (40px total from 20px border = 60px padding) */
    .hero { padding: 120px 20px 80px 20px; flex-direction: column; gap: 40px; }
    .image-section { padding: 0 60px; }
    .features { padding: 0 60px; }
    .consult { padding: 0 60px; }
    .footer { padding: 0 60px; }
    
    /* SPECIFIC ADJUSTMENTS */
    .hero-left h1 { font-size: 60px; }
    .hero-right { width: 100%; justify-content: flex-start; }

    /* ABOUT SECTION */
    .about { 
        grid-template-columns: 1fr; 
        display: flex;
        flex-direction: column;
    }
    .about-box { 
        padding: 60px 20px; 
        border-right: none; 
        border-bottom: 1px solid rgba(0,0,0,0.1); 
        min-height: auto;
        order: 2; /* Text box defaults to second */
    }
    .about-box.has-grid {
        order: 1; /* Image box forced to first */
    }
    .about-box:last-child { border-bottom: none; }
    .about-label { top: 30px; }
    .about-box:first-child .about-label, 
    .about-box:last-child .about-label { left: 20px; right: auto; }
    
    .about-btn-ghost, 
    .about-btn-solid { position: relative; bottom: 0; margin-top: 40px; align-self: flex-start; }
    
    .about-box:first-child .about-btn-ghost, .about-box:last-child .about-btn-ghost,
    .about-box:first-child .about-btn-solid, .about-box:last-child .about-btn-solid { left: 0; right: auto; }
    
    .about-box:first-child .about-content, .about-box:last-child .about-content { align-items: flex-start; text-align: left; margin-top: 40px; }
    .about-huge { font-size: 60px !important; letter-spacing: 0 !important; }
    .about-box:last-child .about-specs { text-align: left; }
    .about-box:last-child .about-specs span { flex-direction: row; }

    /* FEATURES SECTION */
    .features-top { flex-direction: column; gap: 20px; padding: 60px 0; align-items: flex-start; }
    .features-top h2 { width: 100%; font-size: 40px; }
    .features-top p { width: 100%; }
    .features-cards { grid-template-columns: 1fr; }
    .card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding: 40px 0; }
    .card:last-child { border-bottom: none; }

    /* CONSULT SECTION */
    .consult-content { grid-template-columns: 1fr; }
    .consult-top { flex-direction: column; padding: 60px 0; align-items: flex-start; gap: 20px;}
    .consult-top h1 { font-size: 60px; }
    .consult-top p { width: 100%; }
    .consult-left { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding: 40px 0; }
    .consult-right { padding: 40px 0; }

    .row { flex-direction: column; }

    /* FOOTER */
    .footer-main { grid-template-columns: 1fr; }
    .footer-col { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding: 40px 0; }
    .footer-col:last-child { border-bottom: none; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: left; padding: 30px 0; }
    
    /* MOBILE MENU PADDING */
    .mobile-link { padding: 0 60px; }
}

@media (max-width: 600px) {
    /* Narrow screens - pull lines further in, adjust text */
    body::before { left: 10px; }
    body::after { right: 10px; }
    
    .hero { padding: 100px 30px 60px 30px; }
    .image-section { padding: 0 30px; }
    .features { padding: 0 30px; }
    .consult { padding: 0 30px; }
    .footer { padding: 0 30px; }
    .mobile-link { padding: 0 30px; }
    .about-box { padding: 40px 30px; }
    
    .about-box:first-child .about-label, 
    .about-box:last-child .about-label { left: 30px; }

    .hero-left h1 { font-size: 48px; }
    .about-huge { font-size: 48px !important; }
}


