        :root {
            --orange: #e36014;
            --orange-dark: #c44d0a;
            --orange-light: #fbeae0;
            --blue: #007bc3;
            --blue-dark: #005a91;
            --blue-light: #e7f1f7;
            --white: #ffffff;
            --gray-100: #f5f6f8;
            --gray-200: #e2e6ea;
            --gray-600: #4a5568;
            --gray-900: #1a202c;
            --dark: #0f1115;
            --radius: 6px;
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--gray-600);
            line-height: 1.7;
            background: var(--white);
            overflow-x: hidden;
        }

        /* Scroll Progress Bar */
        #scroll-progress {
            position: fixed; top: 0; left: 0; height: 2px;
            background: var(--orange); z-index: 10000;
            transition: width 0.1s ease;
        }

        /* Navigation */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            padding: 0 2rem;
        }
        .nav-inner {
            max-width: 1280px; margin: 0 auto;
            display: flex; align-items: center; justify-content: space-between;
            height: 72px;
        }
        .nav-logo img { height: 40px; display: block; }
        .nav-links {
            display: flex; list-style: none; gap: 1.25rem; align-items: center;
        }
        .nav-links a {
            text-decoration: none; color: var(--gray-600);
            font-weight: 600; font-size: 0.82rem;
            text-transform: uppercase; letter-spacing: 0.06em;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--orange); }
        .nav-links a.active { color: var(--orange); }
        .nav-cta {
            background: var(--orange); color: var(--white) !important;
            padding: 10px 24px; border-radius: var(--radius);
            font-weight: 600 !important; font-size: 0.85rem;
            transition: background 0.2s;
            text-decoration: none !important;
            display: inline-flex; align-items: center; gap: 5px;
        }
        .nav-cta:hover {
            background: var(--orange-dark);
        }
        .nav-cta::after { display: none !important; }
        .nav-phone {
            color: var(--white); font-weight: 700; font-size: 0.85rem;
            text-decoration: none; background: var(--blue);
            padding: 10px 20px; border-radius: var(--radius);
            letter-spacing: 0.04em; display: inline-flex;
            align-items: center; gap: 5px;
            transition: background 0.2s;
        }
        .nav-phone:hover { background: var(--blue-dark); }
        .menu-toggle {
            display: none; background: none; border: none; cursor: pointer;
            flex-direction: column; gap: 5px; padding: 4px;
        }
        .menu-toggle span {
            display: block; width: 24px; height: 2px; background: var(--gray-900);
        }
        .nav-actions {
            display: flex; align-items: center; gap: 1rem;
        }

        /* Hero */
        .hero {
            min-height: 100vh; display: flex; align-items: center;
            position: relative; overflow: hidden;
            background: var(--gray-100);
            padding: 120px 2rem 80px;
        }
        .hero-inner {
            max-width: 1280px; margin: 0 auto; width: 100%;
            display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
            align-items: center; position: relative; z-index: 1;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--orange-light); color: var(--orange-dark);
            padding: 8px 20px; border-radius: 50px; font-weight: 600;
            font-size: 0.875rem; margin-bottom: 1.5rem;
        }
        .hero-badge .dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: var(--orange); display: inline-block;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.75rem);
            font-weight: 800; color: var(--gray-900); line-height: 1.15;
            margin-bottom: 1.5rem;
        }
        .hero h1 span { color: var(--orange); }
        .hero p {
            font-size: 1.15rem; color: var(--gray-600); margin-bottom: 2rem;
            max-width: 520px;
        }
        .hero-buttons {
            display: flex; gap: 1rem; flex-wrap: wrap;
        }
        .hero-calc-link {
            display: inline-flex; align-items: center; gap: 6px;
            margin-top: 16px; font-size: 0.9rem; font-weight: 500;
            color: var(--blue); cursor: pointer;
            transition: color 0.2s;
        }
        .hero-calc-link:hover { color: var(--blue-dark); }
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 32px; border-radius: var(--radius);
            font-weight: 600; font-size: 1rem; text-decoration: none;
            transition: all 0.3s ease; cursor: pointer; border: none;
            font-family: inherit;
        }
        .btn-primary { 
            background: var(--orange); color: var(--white);
        }
        .btn-primary:hover { background: var(--orange-dark); }
        .btn-outline {
            background: transparent; color: var(--gray-900);
            border: 2px solid var(--gray-200);
        }
        .btn-outline:hover { border-color: var(--orange); color: var(--orange); }
        .hero-visual {
            position: relative;
        }
        .hero-collage {
            display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
            position: relative; z-index: 2;
            height: 320px;
        }
        .hero-slot {
            position: relative; overflow: hidden;
            border-radius: 10px; border: 1px solid var(--gray-200);
        }
        .hero-slot img {
            position: absolute; inset: 0;
            width: 100%; height: 100%; object-fit: cover;
            opacity: 0; transition: opacity 1.4s ease;
        }
        .hero-slot img.active { opacity: 1; }
        .hero-float {
            position: absolute; width: 100px; height: 100px;
            border-radius: 6px; opacity: 0.15; pointer-events: none;
            animation: float 8s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(3deg); }
        }
        .hero-float:nth-child(1)  { top: 10%; left: 5%;  background: var(--orange); animation-delay: 0s; }
        .hero-float:nth-child(2)  { top: 6%;  right: 10%; background: var(--blue);   animation-delay: 1s;   width: 60px; height: 60px; }
        .hero-float:nth-child(3)  { top: 32%; left: 12%; background: var(--blue);   animation-delay: 2s;   width: 40px; height: 40px; }
        .hero-float:nth-child(4)  { top: 25%; right: 6%; background: var(--orange); animation-delay: 0.6s; }
        .hero-float:nth-child(5)  { top: 55%; left: 3%;   background: var(--orange); animation-delay: 3s;   width: 70px; height: 70px; }
        .hero-float:nth-child(6)  { top: 50%; right: 15%; background: var(--blue);   animation-delay: 1.5s; width: 50px; height: 50px; }
        .hero-float:nth-child(7)  { top: 75%; left: 12%;  background: var(--blue);   animation-delay: 4s;   width: 80px; height: 80px; }
        .hero-float:nth-child(8)  { top: 70%; right: 5%;  background: var(--orange); animation-delay: 2.5s; width: 35px; height: 35px; }
        .hero-float:nth-child(9)  { top: 88%; left: 28%;  background: var(--orange); animation-delay: 3.5s; width: 55px; height: 55px; }
        .hero-float:nth-child(10) { top: 85%; right: 20%; background: var(--blue);   animation-delay: 5s;   width: 90px; height: 90px; }

        /* Stats Counter Section */
        .stats {
            padding: 60px 2rem 0; position: relative; z-index: 10;
        }
        .stats-inner {
            max-width: 1280px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
        }
        .stat-card {
            background: var(--white); border-radius: 8px; padding: 2rem;
            text-align: center; border: 1px solid var(--gray-200);
            position: relative; overflow: hidden;
        }
        .stat-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
        }
        .stat-card:nth-child(1)::before { background: var(--orange); }
        .stat-card:nth-child(2)::before { background: var(--blue); }
        .stat-card:nth-child(3)::before { background: var(--orange); }
        .stat-card:nth-child(4)::before { background: var(--blue); }
        .stat-number {
            font-size: 2.5rem; font-weight: 800; color: var(--gray-900); line-height: 1;
        }
        .stat-label { font-size: 0.875rem; color: var(--gray-600); margin-top: 0.5rem; }

        /* Section Styles */
        .section {
            padding: 100px 2rem;
        }
        .section-inner {
            max-width: 1280px; margin: 0 auto;
        }
        .section-label {
            display: inline-block; color: var(--orange); font-weight: 600;
            font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em;
            margin-bottom: 0.75rem;
        }
        .section-title {
            font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
            color: var(--gray-900); margin-bottom: 1rem; line-height: 1.25;
        }
        .section-subtitle {
            font-size: 1.1rem; color: var(--gray-600); max-width: 600px;
            margin-bottom: 3rem;
        }

        /* Services */
        .services-grid {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
        }
        .service-card {
            background: var(--white); border-radius: 8px;
            border: 1px solid var(--gray-200); overflow: hidden;
            display: flex; flex-direction: column;
        }
        .service-card:hover {
            border-color: var(--orange);
        }
        .service-img {
            width: 100%; height: 190px; object-fit: cover; display: block;
        }
        .service-body { padding: 1.5rem; }
        .service-icon {
            width: 56px; height: 56px; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .service-icon svg { width: 26px; height: 26px; }
        .service-icon.s1 { background: var(--orange-light); color: var(--orange); }
        .service-icon.s2 { background: var(--blue-light); color: var(--blue); }
        .service-icon.s3 { background: var(--orange-light); color: var(--orange); }
        .service-icon.s4 { background: var(--blue-light); color: var(--blue); }
        .service-card h3 { font-size: 1.2rem; color: var(--gray-900); margin-bottom: 0.5rem; }
        .service-card p { font-size: 0.9375rem; color: var(--gray-600); margin-bottom: 1rem; }
        .service-link {
            color: var(--orange); font-weight: 600; text-decoration: none;
            font-size: 0.9375rem; display: inline-flex; align-items: center; gap: 6px;
            transition: gap 0.2s;
        }
        .service-link:hover { gap: 10px; }
        .service-detail {
            max-height: 0; overflow: hidden;
            transition: max-height 0.4s ease;
            margin-top: 0;
        }
        .service-detail.open { max-height: 300px; margin-top: 16px; }
        .service-detail ul {
            list-style: none; padding: 0;
            border-top: 1px solid var(--gray-200);
            padding-top: 14px;
        }
        .service-detail ul li {
            font-size: 0.88rem; color: var(--gray-600);
            padding: 4px 0; padding-left: 16px; position: relative;
        }
        .service-detail ul li::before {
            content: '—'; position: absolute; left: 0; color: var(--orange);
        }

        /* Trust Logos Wall */
        .clients { background: var(--gray-100); overflow:hidden; padding: 100px 2rem; }
        .clients-marquee {
            overflow: hidden; position: relative;
            max-width: 1280px; margin: 0 auto;
        }
        .clients-track {
            display: flex; animation: marquee 30s linear infinite;
            width: max-content; gap: 0;
        }
        .clients-track:hover { animation-play-state: paused; }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .client-logo {
            display: flex; align-items: center; justify-content: center;
            height: 64px; padding: 0 32px;
            font-weight: 700; font-size: 0.95rem;
            color: var(--gray-300); white-space: nowrap;
            transition: color 0.3s;
        }
        .client-logo:hover { color: var(--orange); }
        .client-logo img { height: 48px; display: block; filter: grayscale(100%) opacity(0.6); transition: all 0.3s; }
        .client-logo:hover img { filter: grayscale(0%); opacity: 1; }

        /* Testimonials */
        .testimonials { background: var(--blue-light); }
        .testimonial-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
        }
        .testimonial-card {
            background: var(--white); border-radius: 8px; padding: 1.75rem;
            border: 1px solid var(--gray-200);
            position: relative;
        }
        .testimonial-card::before {
            content: '\201C'; position: absolute; top: 1rem; right: 1.5rem;
            font-size: 4rem; color: var(--orange-light); line-height: 1;
            font-family: serif;
        }
        .testimonial-stars {
            color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px;
        }
        .testimonial-card p {
            font-size: 0.9375rem; color: var(--gray-600); margin-bottom: 1.25rem;
            font-style: italic; position: relative; z-index: 1;
        }
        .testimonial-author {
            display: flex; align-items: center; gap: 0.75rem;
        }
        .testimonial-avatar {
            width: 44px; height: 44px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; color: white; font-size: 1rem;
        }
        .testimonial-avatar.a1 { background: var(--orange); }
        .testimonial-avatar.a2 { background: var(--blue); }
        .testimonial-avatar.a3 { background: var(--orange); }
        .testimonial-author strong { display: block; color: var(--gray-900); font-size: 0.9375rem; }
        .testimonial-author span { font-size: 0.8125rem; color: var(--gray-600); }

        /* Team */
        .team-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
        }
        .team-card {
            text-align: center; background: var(--white); border-radius: 8px;
            padding: 2rem; border: 1px solid var(--gray-200);
        }
        .team-avatar {
            width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1rem;
            display: flex; align-items: center; justify-content: center;
            font-weight: 800; font-size: 1.75rem; color: white;
        }
        .team-avatar.t1 { background: var(--orange); }
        .team-avatar.t2 { background: var(--blue); }
        .team-avatar.t3 { background: var(--orange-dark); }
        .team-avatar.t4 { background: var(--blue-dark); }
        .team-card h3 { font-size: 1.15rem; color: var(--gray-900); min-height: 1.6em; line-height: 1.3; }
        .team-card .role {
            color: var(--orange); font-weight: 600; font-size: 0.875rem;
            margin: 0.25rem 0 0.75rem; min-height: 1.4em;
        }
        .team-card .phone {
            color: var(--gray-600); font-size: 0.875rem;
            display: flex; align-items: center; justify-content: center; gap: 6px;
        }
        .team-card .phone a {
            color: var(--gray-600); text-decoration: none; transition: color 0.2s;
        }
        .team-card .phone a:hover { color: var(--orange); }

        /* CTA Banner */
        .cta-banner {
            position: relative; overflow: hidden;
            background: var(--blue); border-radius: 8px;
            padding: 4rem 3rem; text-align: center; margin: 0 2rem;
        }
        .cta-inner { max-width: 1280px; margin: 0 auto; }
        .cta-banner h2 { color: white; font-size: 2rem; margin-bottom: 1rem; }
        .cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; }
        .btn-white {
            background: var(--white); color: var(--blue); padding: 16px 36px;
            border-radius: var(--radius); font-weight: 700; font-size: 1rem;
            text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
            transition: background 0.2s;
        }
        .btn-white:hover { background: var(--gray-100); }

        /* Contact */
        .contact-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
            align-items: start;
        }
        .contact-info h3 { font-size: 1.5rem; color: var(--gray-900); margin-bottom: 1.5rem; }
        .contact-item {
            display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start;
        }
        .contact-icon {
            width: 44px; height: 44px; border-radius: 6px; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            background: var(--orange-light); color: var(--orange);
        }
        .contact-icon svg { width: 18px; height: 18px; }
        .contact-item strong { display: block; color: var(--gray-900); font-size: 0.9375rem; }
        .contact-item span { color: var(--gray-600); font-size: 0.875rem; }
        .contact-form {
            background: var(--white); border-radius: 8px; padding: 2rem;
            border: 1px solid var(--gray-200);
        }
        .contact-form h3 { font-size: 1.25rem; color: var(--gray-900); margin-bottom: 1.5rem; }
        .form-group { margin-bottom: 1.25rem; }
        .form-group label {
            display: block; font-size: 0.875rem; font-weight: 600;
            color: var(--gray-900); margin-bottom: 0.5rem;
        }
        .form-group input, .form-group textarea {
            width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
            border-radius: 10px; font-size: 0.9375rem; font-family: inherit;
            transition: all 0.2s; background: var(--gray-100);
            resize: vertical;
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none; border-color: var(--orange);
            background: white;
        }
        .btn-submit {
            width: 100%; padding: 14px; background: var(--orange);
            color: white; border: none; border-radius: var(--radius);
            font-weight: 700; font-size: 1rem; cursor: pointer;
            transition: background 0.2s; font-family: inherit;
        }
        .btn-submit:hover { background: var(--orange-dark); }

        /* Footer */
        .footer {
            background: var(--dark); color: rgba(255,255,255,0.65); padding: 4rem 2rem 2rem;
        }
        .footer-inner {
            max-width: 1280px; margin: 0 auto;
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
        }
        .footer-logo img { height: 32px; margin-bottom: 1rem; }
        .footer p { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.55); }
        .footer h4 { color: white; font-size: 1rem; margin-bottom: 1.25rem; }
        .footer ul { list-style: none; }
        .footer ul li { margin-bottom: 0.75rem; }
        .footer ul li a {
            color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem;
            transition: color 0.2s;
        }
        .footer ul li a:hover { color: var(--orange); }
        .footer-bottom {
            max-width: 1280px; margin: 3rem auto 0;
            padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center; font-size: 0.8125rem; color: rgba(255,255,255,0.4);
        }

        /* Back to Top */
        .back-to-top {
            position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
            width: 44px; height: 44px; border-radius: var(--radius);
            background: var(--orange); color: var(--white);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.25rem; cursor: pointer; border: none;
            opacity: 0; transform: translateY(20px); transition: all 0.3s ease;
        }
        .back-to-top.visible { opacity: 1; transform: translateY(0); }
        .back-to-top:hover { background: var(--orange-dark); }

        /* Reveal Animation */
        .reveal {
            opacity: 0; transform: translateY(30px);
            transition: all 0.6s ease-out;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* Calculator Modal */
        .calc-overlay {
            display: none; position: fixed; inset: 0; z-index: 10001;
            background: rgba(15,17,21,0.6); align-items: center;
            justify-content: center; padding: 20px;
        }
        .calc-overlay.open { display: flex; }
        .calc-modal {
            background: var(--white); border-radius: 12px;
            max-width: 520px; width: 100%; padding: 36px 32px;
            position: relative; max-height: 90vh; overflow-y: auto;
        }
        .calc-close {
            position: absolute; top: 16px; right: 16px;
            width: 32px; height: 32px; border: 1px solid var(--gray-200);
            border-radius: 6px; background: var(--white); cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem; color: var(--gray-600); transition: all 0.2s;
        }
        .calc-close:hover { border-color: var(--orange); color: var(--orange); }
        .calc-modal h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
        .calc-modal .calc-sub { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 24px; }
        .calc-group { margin-bottom: 18px; }
        .calc-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-900); margin-bottom: 6px; }
        .calc-group select {
            width: 100%; padding: 10px 12px; border: 1px solid var(--gray-200);
            border-radius: 6px; font-family: inherit; font-size: 0.9rem;
            background: var(--white); cursor: pointer;
        }
        .calc-group select:focus { outline: none; border-color: var(--orange); }
        .calc-result {
            margin-top: 24px; padding: 20px; border-radius: 8px;
            background: var(--blue-light); text-align: center;
        }
        .calc-result .price {
            font-size: 2rem; font-weight: 800; color: var(--blue);
        }
        .calc-result .note {
            font-size: 0.8rem; color: var(--gray-600); margin-top: 6px;
        }

        /* Responsive */
        @media (max-width:1024px) {
            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero p { max-width: 100%; margin-inline: auto; }
            .hero-buttons { justify-content: center; }
            .hero-visual { display: none; }
            .stats-inner { grid-template-columns: repeat(2, 1fr); }
            .footer-inner { grid-template-columns: 1fr 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .testimonial-grid { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav { padding: 0; }
            .nav-inner { padding: 8px 10px; height: 60px; flex-wrap: nowrap; position: relative; }
            .nav-logo img { height: 32px; }
            .nav-links { display: none; }
            .menu-toggle { display: flex; position: absolute; top: 50%; transform: translateY(-50%); right: 10px; }
            .nav-actions { flex: 1; display: flex; justify-content: center; gap: 8px; padding-right: 40px; }
            .nav-actions .nav-phone,
            .nav-actions .nav-cta { padding: 8px 10px; font-size: 0.68rem; }
            .nav-links.mobile-open {
                display: flex; flex-direction: column; position: absolute;
                top: 100%; left: 0; right: 0; background: var(--white);
                padding: 16px; gap: 0; border-bottom: 1px solid var(--gray-200);
            }
            .nav-links.mobile-open a {
                padding: 14px 12px; border-bottom: 1px solid var(--gray-200);
                font-size: 0.75rem;
            }
            .nav-links.mobile-open a:last-child { border-bottom: none; margin-top: 8px; }
            .hero { padding: 80px 16px 50px; min-height: auto; }
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
            .hero-btns { flex-direction: column; }
            .btn { width: 100%; justify-content: center; font-size: 0.88rem; padding: 14px 24px; }
            .stats { padding: 40px 16px 0; }
            .stats-inner { grid-template-columns: 1fr 1fr; gap: 8px; }
            .stat-card { padding: 1.25rem 0.75rem; }
            .stat-number { font-size: 1.8rem; }
            .stat-label { font-size: 0.75rem; }
            .section { padding: 50px 16px; }
            .section-title { font-size: 1.6rem; }
            .section-subtitle { font-size: 0.9rem; }
            .services-grid { grid-template-columns: 1fr; }
            .service-img { height: 160px; }
            .service-body { padding: 20px; }
            .service-card h3 { font-size: 1.05rem; }
            .service-card p { font-size: 0.85rem; }
            .clients { padding: 50px 16px; }
            .client-logo { height: 48px; padding: 0 16px; font-size: 0.8rem; }
            .testimonials { padding: 50px 16px; }
            .testimonial-grid { grid-template-columns: 1fr; }
            .testimonial-card { padding: 24px 20px; }
            .team-grid { grid-template-columns: 1fr; }
            .team-card { padding: 32px 20px; }
            .team-avatar { width: 72px; height: 72px; font-size: 1.2rem; }
            .cta-banner { margin: 0; padding: 36px 20px; border-radius: 0; }
            .cta-banner h2 { font-size: 1.4rem; }
            .cta-banner p { font-size: 0.9rem; }
            .contact { padding: 50px 16px; }
            .contact-grid { grid-template-columns: 1fr; }
            .contact-info, .contact-form { padding: 28px 20px; }
            .contact-icon { width: 38px; height: 38px; }
            .contact-icon svg { width: 16px; height: 16px; }
            .footer { padding: 36px 16px 24px; }
            .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
            .footer-bottom { margin-top: 24px; padding-top: 20px; }
            .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 1rem; }
        }

/* ===== Sub-page header ===== */
.page-head {
    padding: 140px 2rem 60px;
    background: var(--gray-100);
    text-align: center;
}
.page-head h1 {
    font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800;
    color: var(--gray-900); letter-spacing: -0.02em; margin-bottom: 8px;
}
.page-head p {
    color: var(--gray-600); font-size: 1.05rem; max-width: 560px; margin: 0 auto;
}
@media (max-width: 768px) {
    .page-head { padding: 100px 1rem 40px; }
}

/* ===== Cookie consent banner ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--dark); color: rgba(255,255,255,0.9);
    padding: 18px 24px; display: none;
    align-items: center; gap: 16px; flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
    flex: 1; min-width: 240px; font-size: 0.875rem; margin: 0;
    line-height: 1.5;
}
.cookie-banner p a { color: var(--orange); text-decoration: underline; }
.cookie-banner .cookie-actions { display: flex; gap: 10px; }
.cookie-btn {
    border: none; cursor: pointer; padding: 10px 20px;
    border-radius: 6px; font-family: inherit; font-weight: 600;
    font-size: 0.875rem; transition: background 0.2s;
}
.cookie-btn.accept { background: var(--orange); color: #fff; }
.cookie-btn.accept:hover { background: var(--orange-dark); }
.cookie-btn.decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
.cookie-btn.decline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
@media (max-width: 768px) {
    .cookie-banner { padding: 16px; }
    .cookie-banner .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; }
}

/* ===== Service detail page ===== */
.feature-list {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; padding: 0; margin: 0;
}
.feature-list li {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 8px; padding: 20px 24px 20px 52px;
    font-size: 1rem; color: var(--gray-600); position: relative;
}
.feature-list li::before {
    content: '\2713'; position: absolute; left: 22px; top: 18px;
    color: var(--orange); font-weight: 700; font-size: 1.1rem;
}
@media (max-width: 768px) {
    .feature-list { grid-template-columns: 1fr; }
}
