        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.6;
            color: var(--color-text-primary);
            background: var(--color-bg-page);
        }

        img {
            display: block;
            max-width: 100%;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 5rem 0;
        }

        .section-alt {
            background: var(--color-bg);
        }

        .overline {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--vc-teal-500);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .overline::before {
            content: '';
            width: 20px;
            height: 2px;
            background: var(--vc-teal-400);
            border-radius: 99px;
            flex-shrink: 0;
        }

        .section-title {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.15;
            color: var(--color-text-primary);
            margin-bottom: 14px;
        }

        .section-title span {
            color: var(--vc-teal-500);
        }

        .section-sub {
            font-size: 16px;
            font-weight: 300;
            color: var(--color-text-secondary);
            line-height: 1.7;
            max-width: 620px;
        }

        .section-header {
            margin-bottom: 3rem;
        }

        .section-header.center {
            text-align: center;
        }

        .section-header.center .section-sub {
            margin: 0 auto;
        }

        .section-header.center .overline {
            justify-content: center;
        }

        .section-header.center .overline::before {
            display: none;
        }

        .btn {
            font-family: var(--font);
            font-weight: 500;
            font-size: 14px;
            padding: 11px 22px;
            border-radius: var(--r-md);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            text-decoration: none;
            transition: background 0.15s, opacity 0.15s, transform 0.1s, box-shadow 0.15s;
            line-height: 1;
        }

        .btn:active {
            transform: scale(0.98);
        }

        .btn-primary {
            background: var(--vc-teal-500);
            color: white;
        }

        .btn-primary:hover {
            background: var(--vc-teal-600);
            box-shadow: 0 4px 12px rgba(26, 150, 136, 0.35);
        }

        .btn-sm {
            font-size: 12px;
            padding: 7px 14px;
            border-radius: var(--r-sm);
        }

        .btn-lg {
            font-size: 15px;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: var(--r-lg);
        }

        .nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(18px);
            border-bottom: 0.5px solid var(--color-border);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            height: 64px;
            gap: 2rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .nav-logo-img {
            height: 36px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 0.25rem;
        }

        .nav-links a {
            font-size: 13px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: var(--r-sm);
            color: var(--color-text-secondary);
            transition: color 0.15s, background 0.15s;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--vc-teal-600);
            background: var(--vc-teal-50);
        }

        .nav-actions {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-phone {
            font-size: 12px;
            font-weight: 500;
            color: var(--color-text-secondary);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-phone strong {
            color: var(--vc-warm-900);
            font-weight: 600;
            font-size: 13px;
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
            border-radius: var(--r-sm);
            border: none;
            background: transparent;
        }

        .nav-hamburger span {
            width: 22px;
            height: 2px;
            background: var(--vc-warm-800);
            border-radius: 99px;
            transition: transform 0.2s, opacity 0.2s;
        }

        .mobile-menu {
            display: none;
            border-top: 0.5px solid var(--color-border);
            background: white;
            padding: 0.75rem 1.5rem 1rem;
        }

        .mobile-menu.open {
            display: grid;
            gap: 0.25rem;
        }

        .mobile-menu a {
            padding: 0.8rem 0.5rem;
            border-radius: var(--r-sm);
            font-size: 14px;
            color: var(--color-text-secondary);
        }

        .mobile-menu a.active,
        .mobile-menu a:hover {
            color: var(--vc-teal-600);
            background: var(--vc-teal-50);
        }

        .work-hero {
            min-height: 430px;
            display: flex;
            align-items: flex-end;
            background:
                linear-gradient(90deg, rgba(4, 51, 60, 0.9), rgba(8, 75, 87, 0.72)),
                url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
            color: white;
            padding: 6rem 0 4rem;
        }

        .work-hero-content {
            max-width: 760px;
        }

        .work-hero-eyebrow {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--vc-sage-300);
            margin-bottom: 16px;
        }

        .work-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(34px, 7vw, 68px);
            line-height: 1.02;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .work-hero p {
            max-width: 650px;
            font-size: clamp(17px, 2vw, 21px);
            font-weight: 300;
            color: rgba(255, 255, 255, 0.84);
            line-height: 1.65;
        }

        .work-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
            gap: 2rem;
            align-items: start;
        }

        .work-story {
            display: grid;
            gap: 1rem;
        }

        .work-panel {
            background: white;
            border: 1px solid var(--color-border);
            border-radius: var(--r-lg);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
        }

        .work-panel h2,
        .form-card h2 {
            font-family: var(--font-display);
            font-size: clamp(18px, 2.4vw, 24px);
            line-height: 1.25;
            color: var(--vc-teal-800);
            margin-bottom: 14px;
        }

        .work-panel p {
            color: var(--color-text-secondary);
            font-weight: 300;
            line-height: 1.75;
        }

        .work-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 1rem;
        }

        .work-value {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            min-height: 74px;
            padding: 14px;
            border-radius: var(--r-md);
            background: var(--vc-teal-50);
            color: var(--vc-warm-900);
            font-size: 14px;
            line-height: 1.45;
        }

        .work-value i {
            color: var(--vc-teal-600);
            font-size: 18px;
            line-height: 1;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .work-aside {
            position: sticky;
            top: 88px;
        }

        .work-callout {
            background: var(--vc-teal-800);
            color: white;
            border-radius: var(--r-lg);
            padding: 2rem;
            box-shadow: var(--shadow-md);
        }

        .work-callout h2 {
            font-family: var(--font-display);
            font-size: clamp(22px, 3vw, 30px);
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .work-callout p {
            color: rgba(255, 255, 255, 0.78);
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 22px;
        }

        .work-callout .btn {
            background: white;
            color: var(--vc-teal-700);
            font-weight: 700;
        }

        .form-section {
            padding-top: 0;
        }

        .form-card {
            background: white;
            border: 1px solid var(--color-border);
            border-radius: var(--r-lg);
            box-shadow: var(--shadow-md);
            padding: clamp(1.4rem, 4vw, 2.4rem);
        }

        .form-intro {
            color: var(--color-text-secondary);
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 720px;
        }

        .form-section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--vc-teal-600);
            margin: 2rem 0 1rem;
        }

        .form-section-title::after {
            content: '';
            height: 1px;
            flex: 1;
            background: var(--color-border);
        }

        .form-alert {
            margin: 1rem 0 1.5rem;
            padding: 13px 15px;
            border-radius: var(--r-md);
            font-size: 14px;
            font-weight: 700;
            line-height: 1.5;
        }

        .form-alert.success {
            color: #075f1b;
            background: #eaf8ee;
            border: 1px solid rgba(7, 133, 29, 0.2);
        }

        .form-alert.error {
            color: #8a241c;
            background: #fff0ee;
            border: 1px solid rgba(179, 54, 43, 0.22);
        }

        .row-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .field-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 16px;
        }

        .field-group label {
            font-size: 13px;
            font-weight: 700;
            color: var(--vc-warm-900);
            margin-bottom: 7px;
        }

        .required-mark {
            color: var(--vc-teal-600);
        }

        .field-group input[type="text"],
        .field-group input[type="email"],
        .field-group input[type="tel"],
        .field-group select,
        .field-group textarea {
            width: 100%;
            padding: 12px 13px;
            border: 1px solid var(--color-border);
            border-radius: var(--r-md);
            font-size: 15px;
            color: var(--color-text-primary);
            background: var(--vc-warm-50);
            outline: none;
            transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
        }

        .field-group input:focus,
        .field-group select:focus,
        .field-group textarea:focus {
            border-color: var(--vc-teal-500);
            box-shadow: 0 0 0 3px rgba(23, 146, 169, 0.12);
            background: white;
        }

        .field-group textarea {
            min-height: 110px;
            resize: vertical;
        }

        .select-wrapper {
            position: relative;
        }

        .select-wrapper::after {
            content: "\F282";
            font-family: "bootstrap-icons";
            position: absolute;
            right: 13px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            color: var(--color-text-secondary);
            pointer-events: none;
        }

        .select-wrapper select {
            appearance: none;
            padding-right: 36px;
            cursor: pointer;
        }

        .field-group input[type="file"] {
            width: 100%;
            padding: 12px 13px;
            border: 1px dashed rgba(23, 146, 169, 0.45);
            border-radius: var(--r-md);
            background: var(--vc-teal-50);
            color: var(--color-text-secondary);
            cursor: pointer;
        }

        .field-help {
            margin-top: 7px;
            color: var(--color-text-muted);
            font-size: 12px;
            line-height: 1.45;
        }

        .honeypot-field {
            position: absolute;
            left: -10000px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .acceptance-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 1.5rem 0 1.8rem;
            padding: 16px;
            background: var(--vc-warm-50);
            border: 1px solid var(--color-border);
            border-radius: var(--r-md);
        }

        .acceptance-group input {
            width: 18px;
            height: 18px;
            margin-top: 3px;
            accent-color: var(--vc-teal-500);
            flex-shrink: 0;
        }

        .acceptance-group label {
            font-size: 13px;
            color: var(--color-text-secondary);
            line-height: 1.55;
            cursor: pointer;
        }

        .submit-row {
            display: flex;
            justify-content: flex-end;
        }

        .footer {
            background: var(--vc-teal-900);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-logo-img {
            height: 32px;
            width: auto;
            filter: brightness(0) invert(1);
            margin-bottom: 12px;
        }

        .footer-tagline {
            font-size: 13px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .footer-social {
            display: flex;
            gap: 8px;
        }

        .footer-social-btn {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--r-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            transition: background 0.15s;
        }

        .footer-social-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .footer-col-title {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 14px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            font-size: 13px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.15s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 0.5px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .footer-copy {
            font-size: 12px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            font-size: 12px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.4);
            transition: color 0.15s;
        }

        .footer-bottom-links a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        .whatsapp-float {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 90;
            width: 54px;
            height: 54px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
        }

        .whatsapp-float svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .reveal {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: none;
        }

        @media (max-width: 920px) {
            .nav-links,
            .nav-phone {
                display: none;
            }

            .nav-hamburger {
                display: flex;
            }

            .work-grid {
                grid-template-columns: 1fr;
            }

            .work-aside {
                position: static;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .section {
                padding: 3.5rem 0;
            }

            .work-hero {
                min-height: 390px;
                padding: 5rem 0 3rem;
            }

            .work-values,
            .row-2,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .form-card,
            .work-panel,
            .work-callout {
                border-radius: var(--r-md);
            }

            .submit-row .btn {
                width: 100%;
                justify-content: center;
            }
        }
