        :root {
            --about-primary: #0f172a;
            --about-accent: #3b82f6;
            --about-light: #60a5fa;
            --about-cyan: #06b6d4;
        }

        /* Hero Section */
        .page-hero {
            padding: 80px 56px;
            background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e293b 100%);
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .page-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--about-accent);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            border: none;
            padding: 0;
            background: none;
        }

        .page-hero .hero-badge::before {
            content: '';
            width: 32px;
            height: 2px;
            background: linear-gradient(90deg, var(--about-accent), var(--about-cyan));
        }

        .page-hero h1 {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -1.5px;
            line-height: 1.1;
            margin-bottom: 24px;
            color: #fff;
        }

        .page-hero h1 .highlight {
            background: linear-gradient(90deg, var(--about-accent), var(--about-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-hero > p,
        .hero-content > p {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            max-width: 500px;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 400px;
        }

        .about-visual {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Central Shield */
        .trust-shield {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 140px;
            height: 170px;
        }

        .shield-inner {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(59,130,246,0.25) 0%, rgba(6,182,212,0.15) 100%);
            border: 2px solid var(--about-accent);
            border-radius: 70px 70px 70px 70px / 50px 50px 100px 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .shield-inner svg {
            width: 48px;
            height: 48px;
            stroke: var(--about-accent);
        }

        .shield-inner span {
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 8px;
        }

        /* Orbiting Elements */
        .orbit-ring {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            border: 1px dashed rgba(59,130,246,0.3);
            border-radius: 50%;
        }

        .orbit-ring.r1 {
            width: 260px;
            height: 260px;
        }

        .orbit-ring.r2 {
            width: 340px;
            height: 340px;
            border-color: rgba(6,182,212,0.2);
        }

        /* Floating Badges */
        .float-badge {
            position: absolute;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(8px);
        }

        .float-badge .badge-icon {
            width: 36px;
            height: 36px;
            background: rgba(59,130,246,0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .float-badge .badge-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--about-light);
        }

        .float-badge .badge-text {
            font-size: 12px;
            font-weight: 600;
            color: #fff;
        }

        .float-badge.b1 { top: 30px; left: 10px; }
        .float-badge.b2 { top: 60px; right: 10px; }
        .float-badge.b3 { bottom: 80px; left: 0; }
        .float-badge.b4 { bottom: 30px; right: 20px; }

        @keyframes floatBadge {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .float-badge.b1 { animation: floatBadge 4s ease-in-out infinite; }
        .float-badge.b2 { animation: floatBadge 4s ease-in-out infinite 1s; }
        .float-badge.b3 { animation: floatBadge 4s ease-in-out infinite 2s; }
        .float-badge.b4 { animation: floatBadge 4s ease-in-out infinite 3s; }

        /* Hero Stats */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: var(--about-primary);
            border-top: 1px solid rgba(255,255,255,0.15);
        }

        .hero-stat {
            padding: 24px 32px;
            border-right: 1px solid rgba(255,255,255,0.15);
            text-align: center;
        }

        .hero-stat:last-child {
            border-right: none;
        }

        .hero-stat-value {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
            letter-spacing: -1px;
        }

        .hero-stat-value span {
            color: var(--about-accent);
        }

        .hero-stat-label {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 1024px) {
            .page-hero {
                grid-template-columns: 1fr;
                padding: 64px 40px;
            }
            .hero-visual {
                display: none;
            }
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .page-hero {
                padding: 48px 24px;
            }
            .page-hero h1 {
                font-size: 32px;
            }
            .hero-stats {
                grid-template-columns: 1fr 1fr;
            }
            .hero-stat {
                padding: 20px;
            }
            .hero-stat-value {
                font-size: 26px;
            }
            .hero-stat-label {
                font-size: 10px;
            }
        }
        @media (max-width: 480px) {
            .hero-stats {
                grid-template-columns: 1fr;
            }
            .hero-stat {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.15);
            }
            .hero-stat:last-child {
                border-bottom: none;
            }
        }

        /* Badge Sections */
        .badge-section { padding: 80px 56px; border-bottom: 1px solid #e8eaed; }
        .badge-section:nth-child(even) { background: #f8f9fa; }
        .badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
        .badge-grid.reverse { direction: rtl; }
        .badge-grid.reverse > * { direction: ltr; }
        .badge-content h2 { font-size: 28px; font-weight: 700; color: #0a0f14; margin-bottom: 20px; letter-spacing: -0.5px; }
        .badge-content p { font-size: 15px; color: #5f6368; line-height: 1.8; margin-bottom: 16px; }
        .badge-content ul { list-style: none; margin: 24px 0; }
        .badge-content ul li { font-size: 15px; color: #5f6368; padding: 10px 0; padding-left: 28px; position: relative; border-bottom: 1px solid #e8eaed; }
        .badge-content ul li:last-child { border-bottom: none; }
        .badge-content ul li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background: #00B1EB; }
        .badge-visual { display: flex; align-items: center; justify-content: center; }
        .badge-box { width: 200px; height: 200px; border: 2px solid #e8eaed; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: #fff; }
        .badge-box svg { width: 64px; height: 64px; color: #00B1EB; }
        .badge-box span { font-size: 14px; font-weight: 700; color: #0a0f14; text-transform: uppercase; letter-spacing: 2px; }

        /* ISO Section Dark */
        .iso-section { background: linear-gradient(135deg, #0a0f14 0%, #1a2530 100%); padding: 80px 56px; }
        .iso-section .badge-content h2 { color: #fff; }
        .iso-section .badge-content p { color: rgba(255,255,255,0.7); }
        .iso-section .badge-content ul li { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.1); }
        .iso-section .badge-box { background: rgba(255,255,255,0.05); border-color: rgba(0,177,235,0.3); }
        .iso-section .badge-box span { color: #fff; }

        /* Certificate Link */
        .cert-link { display: inline-flex; align-items: center; gap: 8px; color: #00B1EB; font-size: 14px; font-weight: 600; margin-top: 8px; transition: all 0.2s; cursor: pointer; }
        .cert-link:hover { gap: 12px; }
        .cert-link svg { width: 18px; height: 18px; }


        /* Values Section - Premium Design */
        .values-section {
            padding: 120px 56px;
            background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
            position: relative;
            overflow: hidden;
        }

        .values-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 20% 20%, rgba(59,130,246,0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(6,182,212,0.08) 0%, transparent 50%);
        }

        .values-section .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
            position: relative;
            z-index: 1;
        }

        .values-section .section-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--about-cyan);
            margin-bottom: 20px;
        }

        .values-section .section-label::before,
        .values-section .section-label::after {
            content: '';
            width: 32px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--about-cyan));
        }

        .values-section .section-label::after {
            background: linear-gradient(90deg, var(--about-cyan), transparent);
        }

        .values-section .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
        }

        .values-section .section-title .highlight {
            background: linear-gradient(90deg, var(--about-accent), var(--about-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .values-section .section-desc {
            font-size: 18px;
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
        }

        .values-grid-new {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            position: relative;
            z-index: 1;
        }

        .value-card-new {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 48px 36px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            backdrop-filter: blur(12px);
        }

        .value-card-new::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--about-accent), var(--about-cyan));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .value-card-new::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(59,130,246,0.05) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .value-card-new:hover {
            border-color: rgba(59,130,246,0.3);
            transform: translateY(-8px);
            box-shadow:
                0 20px 40px rgba(0,0,0,0.3),
                0 0 60px rgba(59,130,246,0.1);
        }

        .value-card-new:hover::before,
        .value-card-new:hover::after {
            opacity: 1;
        }

        .value-number {
            position: absolute;
            top: 24px;
            right: 28px;
            font-size: 64px;
            font-weight: 800;
            color: rgba(255,255,255,0.03);
            line-height: 1;
            z-index: 0;
        }

        .value-icon-new {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(59,130,246,0.2) 0%, rgba(6,182,212,0.2) 100%);
            border: 1px solid rgba(59,130,246,0.3);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }

        .value-icon-new svg {
            width: 30px;
            height: 30px;
            stroke: var(--about-light);
        }

        .value-card-new h3 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
        }

        .value-card-new p {
            font-size: 15px;
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* CTA Section - Editorial Magazine Style */
        .cta-section {
            padding: 0;
            background: #0a0a0f;
            position: relative;
            overflow: hidden;
            min-height: 680px;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse 80% 50% at 20% 40%, rgba(59,130,246,0.12) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 70%, rgba(6,182,212,0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Decorative grid lines */
        .cta-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
        }

        /* Large decorative number */
        .cta-deco-number {
            position: absolute;
            top: -60px;
            right: -40px;
            font-size: 380px;
            font-weight: 900;
            color: rgba(255,255,255,0.015);
            line-height: 1;
            letter-spacing: -20px;
            pointer-events: none;
            font-family: 'Arial Black', sans-serif;
        }

        /* Floating geometric shapes */
        .cta-geo-shape {
            position: absolute;
            pointer-events: none;
        }

        .cta-geo-shape.circle-1 {
            width: 400px;
            height: 400px;
            border: 1px solid rgba(59,130,246,0.15);
            border-radius: 50%;
            top: -100px;
            right: 15%;
            animation: cta-float 20s ease-in-out infinite;
        }

        .cta-geo-shape.circle-2 {
            width: 200px;
            height: 200px;
            border: 1px dashed rgba(6,182,212,0.2);
            border-radius: 50%;
            bottom: 80px;
            left: 10%;
            animation: cta-float 15s ease-in-out infinite reverse;
        }

        .cta-geo-shape.diamond {
            width: 120px;
            height: 120px;
            border: 1px solid rgba(59,130,246,0.1);
            transform: rotate(45deg);
            top: 60%;
            right: 8%;
            animation: cta-spin 30s linear infinite;
        }

        .cta-geo-shape.line-h {
            width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
            top: 30%;
            left: 5%;
        }

        .cta-geo-shape.line-v {
            width: 1px;
            height: 150px;
            background: linear-gradient(180deg, transparent, rgba(6,182,212,0.25), transparent);
            top: 50%;
            right: 25%;
        }

        @keyframes cta-float {
            0%, 100% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-20px) translateX(10px); }
            50% { transform: translateY(0) translateX(20px); }
            75% { transform: translateY(20px) translateX(10px); }
        }

        @keyframes cta-spin {
            0% { transform: rotate(45deg); }
            100% { transform: rotate(405deg); }
        }

        .cta-wrapper {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            min-height: 680px;
            position: relative;
            z-index: 1;
        }

        .cta-content {
            padding: 100px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        /* Editorial style label */
        .cta-label {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .cta-label-line {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, var(--about-accent), var(--about-cyan));
        }

        .cta-label-text {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--about-cyan);
        }

        .cta-content h2 {
            font-size: 56px;
            font-weight: 300;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -2px;
            line-height: 1.1;
        }

        .cta-content h2 strong {
            font-weight: 700;
            display: block;
            background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-content h2 .accent-word {
            color: var(--about-cyan);
            -webkit-text-fill-color: var(--about-cyan);
            font-style: italic;
            position: relative;
        }

        .cta-content h2 .accent-word::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--about-accent), var(--about-cyan));
            opacity: 0.6;
        }

        .cta-content > p {
            font-size: 18px;
            color: rgba(255,255,255,0.55);
            line-height: 1.9;
            margin-bottom: 48px;
            max-width: 480px;
            font-weight: 300;
        }

        /* Action area with buttons and contact info */
        .cta-actions {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-section .btn-primary {
            background: #fff;
            color: #0a0a0f;
            padding: 20px 40px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .cta-section .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59,130,246,0.15), transparent);
            transition: left 0.5s ease;
        }

        .cta-section .btn-primary:hover::before {
            left: 100%;
        }

        .cta-section .btn-primary:hover {
            transform: translateX(8px);
            box-shadow: 0 0 40px rgba(255,255,255,0.15);
        }

        .cta-section .btn-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .cta-section .btn-primary:hover svg {
            transform: translateX(6px);
        }

        .cta-section .btn-secondary {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            padding: 20px 40px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-section .btn-secondary:hover {
            background: rgba(255,255,255,0.05);
            border-color: rgba(255,255,255,0.35);
        }

        .cta-section .btn-secondary svg {
            width: 18px;
            height: 18px;
            opacity: 0.7;
        }

        /* Quick contact info */
        .cta-contact-hint {
            display: flex;
            align-items: center;
            gap: 24px;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .cta-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }

        .cta-contact-item svg {
            width: 16px;
            height: 16px;
            opacity: 0.5;
        }

        .cta-contact-item span {
            color: rgba(255,255,255,0.6);
            font-weight: 500;
        }

        /* CTA Visual Side - Editorial treatment */
        .cta-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 60px;
            border-left: 1px solid rgba(255,255,255,0.05);
        }

        .cta-visual-content {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 380px;
        }

        /* Editorial quote card */
        .quote-card {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            padding: 48px 40px;
            position: relative;
        }

        .quote-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--about-accent), var(--about-cyan));
        }

        .quote-mark {
            font-size: 120px;
            font-family: Georgia, serif;
            color: rgba(59,130,246,0.15);
            line-height: 0.5;
            margin-bottom: 20px;
            display: block;
        }

        .quote-text {
            font-size: 19px;
            font-weight: 400;
            color: rgba(255,255,255,0.85);
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 0;
            font-family: Georgia, 'Times New Roman', serif;
        }


        /* Lightbox */
        .lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; padding: 24px; }
        .lightbox.active { display: flex; }
        .lightbox-content { position: relative; max-width: 900px; max-height: 90vh; }
        .lightbox-content img { max-width: 100%; max-height: 85vh; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
        .lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; padding: 8px; line-height: 1; }
        .lightbox-close:hover { color: #00B1EB; }
        .lightbox-download { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: rgba(255,255,255,0.7); font-size: 13px; transition: color 0.2s; }
        .lightbox-download:hover { color: #00B1EB; }
        .lightbox-download svg { width: 16px; height: 16px; }

        @media (max-width: 1024px) {
            .values-grid-new { grid-template-columns: repeat(2, 1fr); }
            .badge-grid { grid-template-columns: 1fr; gap: 40px; }
            .badge-grid.reverse { direction: ltr; }
            .cta-wrapper { grid-template-columns: 1fr; }
            .cta-visual { border-left: none; border-top: 1px solid rgba(255,255,255,0.05); }
            .cta-deco-number { font-size: 280px; right: -30px; }
            .cta-geo-shape.circle-1 { width: 300px; height: 300px; right: 5%; }
            .cta-content { padding: 80px 56px; }
            .cta-content h2 { font-size: 48px; }
        }

        @media (max-width: 768px) {
            .badge-section { padding: 48px 24px; }
            .iso-section { padding: 48px 24px; }
            .values-section { padding: 80px 24px; }
            .values-grid-new { grid-template-columns: 1fr; }
            .values-section .section-title { font-size: 36px; }
            .value-card-new { padding: 36px 28px; }
            .cta-section { min-height: auto; }
            .cta-content { padding: 64px 24px; }
            .cta-content h2 { font-size: 38px; letter-spacing: -1px; }
            .cta-content > p { font-size: 16px; }
            .cta-visual { padding: 48px 24px; }
            .cta-buttons { flex-direction: column; }
            .cta-section .btn-primary,
            .cta-section .btn-secondary { width: 100%; justify-content: center; padding: 18px 32px; }
            .cta-deco-number { font-size: 180px; top: -30px; right: -20px; }
            .cta-geo-shape.circle-1 { display: none; }
            .cta-geo-shape.diamond { display: none; }
            .quote-card { padding: 36px 28px; }
            .quote-text { font-size: 17px; }
            .cta-contact-hint { flex-direction: column; gap: 12px; align-items: flex-start; }
        }
