

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

        body {
            background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 50%, #ecfdf5 100%);
            font-family: 'Segoe UI', 'Times New Roman', Georgia, serif;
            padding: 20px;
        }

        .app-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Header with Stats - Enhanced */
        .site-header {
            background: linear-gradient(135deg, #ffffff 0%, #fef9e6 100%);
            padding: 30px 35px;
            margin-bottom: 25px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        
        .site-header:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            transform: translateY(-2px);
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .back-home {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #166534, #15803d);
            padding: 10px 22px;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(22,101,52,0.3);
        }
        
        .back-home:hover {
            background: linear-gradient(135deg, #14532d, #166534);
            transform: translateX(-3px);
            box-shadow: 0 4px 12px rgba(22,101,52,0.4);
        }
        
        .stats-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .stat-card {
            background: white;
            padding: 10px 22px;
            border-radius: 50px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.2s;
        }
        
        .stat-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }
        
        .stat-number {
            font-weight: 800;
            color: #166534;
            font-size: 1.2rem;
        }
        
        .site-header h1 {
            font-size: 2rem;
            color: #1e293b;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #166534, #15803d);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .site-header p {
            color: #475569;
            font-size: 0.95rem;
        }
        
        /* Customer Reviews Section - Enhanced */
        .reviews-section {
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
            border-radius: 24px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid #bbf7d0;
            transition: all 0.3s;
        }
        
        .reviews-section:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        
        .reviews-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }
        
        .reviews-header h3 {
            color: #166534;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .rating-badge {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #78350f;
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.85rem;
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .review-card {
            background: white;
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border: 1px solid #e2e8f0;
        }
        
        .review-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.12);
            border-color: #bbf7d0;
        }
        
        .review-stars {
            color: #fbbf24;
            margin-bottom: 10px;
            font-size: 1rem;
            letter-spacing: 2px;
        }
        
        .review-text {
            font-size: 0.9rem;
            color: #334155;
            margin-bottom: 12px;
            line-height: 1.5;
        }
        
        .review-author {
            font-size: 0.8rem;
            color: #166534;
            font-weight: 600;
        }
        
        /* Two Column Layout */
        .two-columns {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        @media (min-width: 1024px) {
            .two-columns {
                flex-direction: row;
                align-items: flex-start;
            }
        }

        /* LEFT SIDE - FORM PANEL - Enhanced */
        .form-panel {
            background: white;
            border-radius: 28px;
            box-shadow: 0 15px 35px -10px rgba(0,0,0,0.15);
            padding: 25px;
            transition: all 0.3s;
        }

        @media (min-width: 1024px) {
            .form-panel {
                flex: 1;
                min-width: 420px;
                max-height: 85vh;
                overflow-y: auto;
                position: sticky;
                top: 20px;
            }
        }
        
        .form-panel::-webkit-scrollbar {
            width: 6px;
        }
        
        .form-panel::-webkit-scrollbar-track {
            background: #e2e8f0;
            border-radius: 10px;
        }
        
        .form-panel::-webkit-scrollbar-thumb {
            background: #166534;
            border-radius: 10px;
        }

        .form-section {
            margin-bottom: 20px;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 18px;
            background: #fefefe;
            transition: all 0.2s;
        }
        
        .form-section:hover {
            border-color: #86efac;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 12px;
            border-bottom: 2px solid #166534;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .section-header-left {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }
        
        .drag-handle {
            cursor: move;
            color: #94a3b8;
            font-size: 1.2rem;
        }
        
        .section-name-input {
            font-size: 1rem;
            font-weight: 600;
            border: 1px solid #cbd5e1;
            background: white;
            padding: 8px 12px;
            border-radius: 10px;
            width: 100%;
            max-width: 220px;
            transition: all 0.2s;
        }
        
        .section-name-input:focus {
            outline: none;
            border-color: #166534;
            box-shadow: 0 0 0 3px rgba(22,101,52,0.1);
        }
        
        .section-actions {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .move-up-btn, .move-down-btn {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.7rem;
            font-weight: 600;
            transition: all 0.2s;
        }
        
        .move-up-btn:hover, .move-down-btn:hover {
            background: #2563eb;
            transform: scale(1.02);
        }
        
        .move-up-btn:disabled, .move-down-btn:disabled {
            background: #cbd5e1;
            cursor: not-allowed;
            transform: none;
        }
        
        .remove-section-btn {
            background: #dc2626;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.7rem;
            font-weight: 600;
            transition: all 0.2s;
        }
        
        .remove-section-btn:hover {
            background: #b91c1c;
            transform: scale(1.02);
        }
        
        .add-field-btn-section {
            background: #166534;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.7rem;
            font-weight: 600;
            transition: all 0.2s;
        }
        
        .add-field-btn-section:hover {
            background: #14532d;
            transform: scale(1.02);
        }

        .field-row {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-bottom: 12px;
            background: #f9fafb;
            padding: 12px;
            border-radius: 12px;
            transition: all 0.2s;
        }
        
        .field-row:hover {
            background: #f3f4f6;
        }
        
        .field-row .field-content {
            flex: 1;
        }
        
        .field-label-input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 8px;
            background: white;
            transition: all 0.2s;
        }
        
        .field-label-input:focus {
            outline: none;
            border-color: #166534;
            box-shadow: 0 0 0 2px rgba(22,101,52,0.1);
        }
        
        .field-value-input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 0.8rem;
            transition: all 0.2s;
        }
        
        .field-value-input:focus {
            outline: none;
            border-color: #166534;
            box-shadow: 0 0 0 2px rgba(22,101,52,0.1);
        }
        
        .remove-field-btn {
            background: #ef4444;
            color: white;
            border: none;
            padding: 8px 14px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.7rem;
            margin-top: 28px;
            transition: all 0.2s;
        }
        
        .remove-field-btn:hover {
            background: #dc2626;
            transform: scale(1.02);
        }

        .btn-sm {
            background: #166534;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 8px;
            transition: all 0.2s;
        }
        
        .btn-sm:hover {
            background: #14532d;
            transform: translateY(-1px);
        }

        .btn-primary {
            background: linear-gradient(135deg, #166534, #15803d);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(22,101,52,0.3);
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #14532d, #166534);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(22,101,52,0.4);
        }

        /* RIGHT SIDE - PREVIEW PANEL */
        .preview-panel {
            background: #f1f5f9;
            border-radius: 28px;
            padding: 25px;
        }

        @media (min-width: 1024px) {
            .preview-panel {
                flex: 1.2;
                position: sticky;
                top: 20px;
                max-height: calc(100vh - 40px);
                overflow-y: auto;
            }
        }
        
        .preview-panel::-webkit-scrollbar {
            width: 6px;
        }
        
        .preview-panel::-webkit-scrollbar-track {
            background: #e2e8f0;
            border-radius: 10px;
        }
        
        .preview-panel::-webkit-scrollbar-thumb {
            background: #166534;
            border-radius: 10px;
        }
        
        /* Action Buttons */
        .preview-actions {
            background: white;
            border-radius: 60px;
            padding: 15px 25px;
            margin-bottom: 25px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        /* Style Controls */
        .style-controls {
            background: #f8fafc;
            border-radius: 20px;
            padding: 20px;
            margin-top: 20px;
            border: 1px solid #e2e8f0;
        }
        
        .style-controls h4 {
            color: #166534;
            margin-bottom: 15px;
            font-size: 1rem;
            font-weight: 700;
        }
        
        .style-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .style-row label {
            font-size: 0.85rem;
            font-weight: 600;
            min-width: 120px;
            color: #334155;
        }
        
        .style-row select, .style-row input {
            padding: 8px 12px;
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            font-size: 0.85rem;
            background: white;
            transition: all 0.2s;
        }
        
        .style-row select:focus, .style-row input:focus {
            outline: none;
            border-color: #166534;
            box-shadow: 0 0 0 2px rgba(22,101,52,0.1);
        }
        
        .color-picker-row {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }
        
        .color-picker-row label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #334155;
        }
        
        #headerColorPicker {
            width: 50px;
            height: 42px;
            border: 2px solid #cbd5e1;
            border-radius: 10px;
            cursor: pointer;
        }
        
        /* A4 Resume Paper - Enhanced */
        .resume-paper {
            width: 100%;
            max-width: 210mm;
            min-height: 297mm;
            background: white;
            margin: 0 auto;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            padding: 12mm 12mm;
            line-height: 1.45;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        
        .resume-paper:hover {
            box-shadow: 0 20px 45px rgba(0,0,0,0.25);
        }

        /* Print Optimization */
        @media print {
            body * {
                visibility: hidden;
            }
            .resume-paper, .resume-paper * {
                visibility: visible;
            }
            .resume-paper {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                margin: 0;
                padding: 12mm;
                box-shadow: none;
                -webkit-print-color-adjust: exact;
                print-color-adjust: exact;
            }
            .form-panel, .preview-actions, .site-header, .info-sections, .back-home, .style-controls, .reviews-section, footer {
                display: none !important;
            }
        }
        
        /* Resume Internal Styles - Professional */
        .resume-title {
            text-align: center;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            color: #166534;
        }
        .resume-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            border-bottom: 3px solid #166534;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        .header-left h1 {
            margin-bottom: 10px;
            color: #1e293b;
        }
        .contact-details p {
            margin: 5px 0;
        }
        .photo-container {
            width: 100px;
            height: 120px;
            border: 2px solid #166534;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f9fafb;
            overflow: hidden;
            border-radius: 8px;
        }
        .photo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .section-head {
            padding: 8px 12px;
            font-weight: 700;
            margin: 18px 0 12px 0;
            text-transform: uppercase;
            border-radius: 6px;
            letter-spacing: 1px;
        }
        .qualification-table {
            width: 100%;
            border-collapse: collapse;
            margin: 10px 0;
        }
        .qualification-table th, .qualification-table td {
            border: 1px solid #cbd5e1;
            padding: 8px 8px;
            text-align: left;
        }
        .qualification-table th {
            background: #f0fdf4;
            font-weight: 700;
        }
        .bullet-list {
            margin-left: 25px;
            list-style-type: disc;
            padding-left: 10px;
        }
        .two-column {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 10px 0;
        }
        .col {
            width: 48%;
        }
        .declaration-text {
            margin-top: 12px;
            text-align: justify;
            font-style: italic;
        }
        .signature-line {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 25px;
            padding-top: 15px;
            border-top: 1px dashed #cbd5e1;
        }
        
        /* Info Sections */
        .info-sections {
            margin-top: 35px;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }
        .howto-card, .faq-card {
            flex: 1;
            background: white;
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            transition: all 0.3s;
        }
        
        .howto-card:hover, .faq-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .howto-card h3, .faq-card h3 {
            color: #166534;
            margin-bottom: 22px;
            font-size: 1.4rem;
        }
        
        .step-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 20px;
        }
        .step-item {
            text-align: center;
            padding: 15px;
            background: #f8fafc;
            border-radius: 16px;
            transition: all 0.2s;
        }
        .step-item:hover {
            background: #f0fdf4;
            transform: translateY(-2px);
        }
        .step-number {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #166534, #15803d);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .faq-item {
            border-bottom: 1px solid #e2e8f0;
            padding: 15px 0;
            cursor: pointer;
            transition: all 0.2s;
        }
        .faq-item:hover {
            background: #f8fafc;
            padding-left: 8px;
        }
        .faq-question {
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #1e293b;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.5;
        }
        .faq-answer.show {
            max-height: 200px;
            padding-top: 12px;
        }
        
        .photo-upload-area {
            border: 2px dashed #166534;
            padding: 20px;
            text-align: center;
            border-radius: 16px;
            cursor: pointer;
            margin-bottom: 15px;
            background: #f9fafb;
            transition: all 0.3s;
        }
        .photo-upload-area:hover {
            background: #f0fdf4;
            border-color: #15803d;
            transform: scale(1.01);
        }
        
        /* Footer */
        footer {
            margin-top: 45px;
            background: white;
            border-radius: 24px;
            padding: 30px 35px;
            text-align: center;
            border-top: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        
        footer:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }
        
        .footer-links a {
            color: #166534;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
            color: #14532d;
        }
        
        .copyright {
            color: #64748b;
            font-size: 0.8rem;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.5s ease forwards;
        }
        
        @media (max-width: 768px) {
            body { padding: 12px; }
            .resume-paper { transform: scale(0.95); transform-origin: top center; }
            .preview-actions button { font-size: 0.7rem; padding: 8px 14px; }
            .site-header h1 { font-size: 1.5rem; }
            .stats-container { width: 100%; justify-content: center; }
            .reviews-grid { grid-template-columns: 1fr; }
            .form-panel, .preview-panel {
                max-height: none;
                position: relative;
            }
        }
    
/* ===== custom chrome ===== */

/* ===================== PRO CSC TOOLS CHROME ===================== */
:root{--brand:#ab183d;--brand2:#d9304f}
body{padding:0 !important;font-family:'Inter','Segoe UI',sans-serif !important}
.app-container{padding:0 18px}
a{text-decoration:none}
.site-nav{position:sticky;top:0;z-index:1000;background:#fff;border-bottom:1px solid #f0e3e7;box-shadow:0 2px 14px rgba(0,0,0,.05)}
.nav-inner{max-width:1280px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:13px 18px}
.brand{display:flex;align-items:center;gap:9px;font-size:20px;font-weight:800;color:var(--brand);letter-spacing:-.3px}
.brand i{color:#e0aa14;font-size:19px}
.nav-links{display:flex;align-items:center;gap:24px;list-style:none;margin:0;padding:0}
.nav-links a{color:#3f3f46;font-weight:600;font-size:15px;transition:color .2s}
.nav-links a:hover{color:var(--brand)}
.nav-cta{background:linear-gradient(135deg,var(--brand),var(--brand2));color:#fff !important;padding:9px 16px;border-radius:10px;font-weight:700;font-size:14px}
.nav-toggle{display:none;background:none;border:none;font-size:22px;color:var(--brand);cursor:pointer}
.site-mobile-menu{display:none;flex-direction:column;background:#fff;border-bottom:1px solid #eee;padding:6px 18px}
.site-mobile-menu.open{display:flex}
.site-mobile-menu a{padding:12px 4px;color:#3f3f46;font-weight:600;border-bottom:1px solid #f4f4f5}
.site-mobile-menu a:last-child{border-bottom:none}
@media(max-width:860px){.nav-links{display:none}.nav-toggle{display:block}}
.tool-hero{background:linear-gradient(135deg,var(--brand),var(--brand2));color:#fff;padding:44px 18px 40px;text-align:center}
.tool-hero .crumbs{font-size:13px;opacity:.92;margin-bottom:12px}
.tool-hero .crumbs a{color:#fff}
.tool-hero h1{font-size:34px;line-height:1.15;margin:0 0 12px;font-weight:800;color:#fff}
.tool-hero p{font-size:16px;max-width:700px;margin:0 auto 20px;opacity:.96;line-height:1.55}
.hero-stats{display:flex;justify-content:center;gap:14px;flex-wrap:wrap}
.hstat{background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.24);border-radius:14px;padding:12px 22px;min-width:118px}
.hnum{display:block;font-size:22px;font-weight:800}
.hlbl{font-size:12px;opacity:.92}
@media(max-width:860px){.tool-hero h1{font-size:26px}.tool-hero p{font-size:15px}}
.section{max-width:1100px;margin:48px auto;padding:0 18px}
.section h2{font-size:26px;font-weight:800;color:#18181b;text-align:center;margin-bottom:8px}
.section .sub{text-align:center;color:#71717a;margin-bottom:28px;font-size:15px}
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:18px}
.step-card{background:#fff;border:1px solid #f0e3e7;border-radius:16px;padding:22px;box-shadow:0 4px 18px rgba(0,0,0,.05);transition:transform .2s}
.step-card:hover{transform:translateY(-4px)}
.step-card .num{width:38px;height:38px;border-radius:11px;background:linear-gradient(135deg,var(--brand),var(--brand2));color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;margin-bottom:12px}
.step-card h3{font-size:16px;margin:0 0 6px;color:#18181b}
.step-card p{font-size:13.5px;color:#52525b;line-height:1.55;margin:0}
.faq-section{max-width:820px;margin:48px auto;padding:0 18px}
.faq-section .faq-item{background:#fff;border:1px solid #f0e3e7 !important;border-radius:14px;margin-bottom:12px;padding:0;box-shadow:0 3px 14px rgba(0,0,0,.04);overflow:hidden}
.faq-section .faq-question{display:flex;justify-content:space-between;align-items:center;gap:12px;font-weight:700;font-size:15.5px;color:#18181b;padding:17px 20px;cursor:pointer}
.faq-section .faq-question span{color:var(--brand);font-size:13px}
.faq-section .faq-answer{display:none;padding:0 20px;color:#52525b;font-size:14.5px;line-height:1.6}
.faq-section .faq-answer.show{display:block;padding:0 20px 17px}
.site-footer{background:#1a1014;color:#e7d7dc;margin-top:52px;padding:46px 18px 22px;box-shadow:none;border:none}
.footer-grid{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:1.5fr 1fr 1fr 1.3fr;gap:30px}
.site-footer .fbrand{display:flex;align-items:center;gap:9px;font-size:20px;font-weight:800;color:#fff;margin-bottom:12px}
.site-footer .fbrand i{color:#e0aa14}
.site-footer p{font-size:13.5px;line-height:1.6;color:#b9a7ad;margin:0 0 12px}
.site-footer h4{font-size:15px;color:#fff;margin:0 0 14px}
.site-footer ul{list-style:none;padding:0;margin:0}
.site-footer ul li{margin-bottom:9px}
.site-footer ul a{color:#b9a7ad;font-size:13.5px}
.site-footer ul a:hover{color:#fff}
.social-row{display:flex;gap:11px;margin-top:6px}
.social-row a{width:36px;height:36px;border-radius:9px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:#e7d7dc;font-size:16px}
.social-row a:hover{background:var(--brand);color:#fff}
.footer-bottom{max-width:1180px;margin:26px auto 0;padding-top:18px;border-top:1px solid rgba(255,255,255,.1);text-align:center;font-size:13px;color:#9b888e}
@media(max-width:860px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.footer-grid{grid-template-columns:1fr}}
.wa-float{position:fixed;right:20px;bottom:20px;width:56px;height:56px;border-radius:50%;background:#25d366;color:#fff;display:flex;align-items:center;justify-content:center;font-size:28px;box-shadow:0 6px 20px rgba(37,211,102,.45);z-index:1200;animation:waFloat 2.6s ease-in-out infinite}
@keyframes waFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
@media print{.site-nav,.site-mobile-menu,.tool-hero,.wa-float,.section,.faq-section,.site-footer{display:none !important}}

