/* =========================================
   1. Variables & Reset (New Emerald/Teal Theme)
   ========================================= */
:root {
    --primary: #0d9488; /* Teal-600 */
    --primary-dark: #0f766e; /* Teal-700 */
    --accent: #f59e0b; /* Amber-500 */
    --bg-dark: #0f172a; /* Slate-900 */
    --bg-light: #f8fafc; /* Slate-50 */
    --bg-alt: #f1f5f9; /* Slate-100 */
    --text-main: #0f172a;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(13, 148, 136, 0.08);
    --gradient-primary: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* =========================================
   2. Utility Classes & Animations
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

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

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.15);
    border-color: rgba(13, 148, 136, 0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 148, 136, 0.4);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s, transform 0.4s;
}

.glow-btn:hover::after {
    opacity: 1;
    transform: scale(1);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.text-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.text-link:hover {
    gap: 8px;
    color: var(--primary-dark);
}

/* Floating Shapes */
.floating-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: #14b8a6;
    top: -150px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #f59e0b;
    bottom: 10%;
    left: -100px;
    animation-delay: -8s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #0d9488;
    top: 50%;
    right: 5%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -40px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   3. Navigation
   ========================================= */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo .accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* =========================================
   4. Hero Section (Asymmetric Layout)
   ========================================= */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    border: 1px solid rgba(13, 148, 136, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-indicators {
    display: flex;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

/* CSS Art Window */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.css-art-window {
    width: 320px;
    height: 420px;
    position: relative;
}

.window-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 100%);
    border: 12px solid #f8fafc;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
}

.window-pane {
    width: 50%;
    height: 100%;
    border-right: 6px solid #f8fafc;
    position: relative;
}

.window-pane.pane-2 {
    border-right: none;
    border-left: 6px solid #f8fafc;
}

.window-drape {
    position: absolute;
    top: 0;
    width: 40%;
    height: 85%;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    border-radius: 0 0 50% 50%;
    opacity: 0.9;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.1);
}

.drape-left {
    left: 0;
    transform-origin: top left;
    transform: scaleX(1.2) skewX(-5deg);
}

.drape-right {
    right: 0;
    transform-origin: top right;
    transform: scaleX(1.2) skewX(5deg);
}

.floating-card {
    position: absolute;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    animation: floatCard 6s infinite ease-in-out;
}

.card-1 {
    top: 40px;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 60px;
    left: -30px;
    animation-delay: -3s;
}

.fc-icon {
    font-size: 1.8rem;
}

.floating-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

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

/* =========================================
   5. Statistics Section
   ========================================= */
.stats-section {
    padding: 40px 0 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-box {
    padding: 32px 24px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-box p {
    margin-top: 8px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

/* =========================================
   6. Services Section (Bento Grid)
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 24px;
}

.bento-item {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.wide {
    grid-column: span 2;
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* =========================================
   7. Process Timeline
   ========================================= */
.timeline-vertical {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 3px;
}

.timeline-step {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
    border: 3px solid var(--bg-alt);
}

.step-content {
    padding: 28px;
    flex: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   8. Portfolio (CSS Placeholders)
   ========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.css-placeholder {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.ph-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}
.ph-modern::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(255,255,255,0.1) 20px);
    border-radius: 8px;
}

.ph-classic {
    background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
    position: relative;
}
.ph-classic::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 80%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%);
    background-size: 20px 20px;
}

.ph-minimal {
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    position: relative;
}
.ph-minimal::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 60%;
    background: rgba(255,255,255,0.6);
    border: 2px solid rgba(13, 148, 136, 0.3);
    border-radius: 4px;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .css-placeholder {
    transform: scale(1.08);
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* =========================================
   9. Article Section (Premium Publication)
   ========================================= */
.article-container {
    max-width: 850px;
}

.article-header {
    margin-bottom: 48px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 32px;
}

.article-category {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

.article-header h1 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    margin: 16px 0;
    line-height: 1.2;
    color: var(--text-main);
}

.article-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.article-content {
    font-size: 1.125rem;
    color: #334155;
}

.article-content p {
    margin-bottom: 28px;
}

.article-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.6;
}

.article-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin: 56px 0 24px;
    color: var(--text-main);
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 36px 0 16px;
    color: var(--text-main);
    font-weight: 700;
}

.article-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.article-content a:hover {
    color: var(--primary-dark);
}

.callout-box {
    padding: 28px;
    border-radius: 16px;
    margin: 36px 0;
    border-left: 5px solid;
    font-size: 1.05rem;
}

.callout-box.tip {
    background: rgba(13, 148, 136, 0.06);
    border-color: var(--primary);
}

.callout-box.warning {
    background: rgba(245, 158, 11, 0.06);
    border-color: var(--accent);
}

.callout-box strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.styled-list {
    margin: 28px 0;
    padding-left: 0;
    list-style: none;
}

.styled-list li {
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 1rem;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.premium-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-main);
    border-left: 5px solid var(--accent);
    padding: 24px 32px;
    margin: 48px 0;
    background: rgba(245, 158, 11, 0.03);
    border-radius: 0 16px 16px 0;
}

.premium-quote footer {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-style: normal;
    color: var(--text-muted);
    margin-top: 16px;
    font-weight: 600;
}

/* =========================================
   10. FAQ Section
   ========================================= */
.faq-section {
    margin-top: 56px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 28px 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding-bottom: 28px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    transition: max-height 0.4s ease-in-out;
}

/* =========================================
   11. Testimonials
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    padding: 36px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.rating {
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.location {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   12. Contact Section
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info, .contact-form-wrapper {
    padding: 48px;
}

.contact-info h3, .contact-form-wrapper h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.info-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-main);
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255,255,255,0.6);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
    background: white;
}

/* =========================================
   13. Footer
   ========================================= */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.footer-col h3 .accent {
    color: var(--primary);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #f8fafc;
    font-weight: 700;
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 6px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icons span {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: #cbd5e1;
}

.social-icons span:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* =========================================
   14. Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle, .hero-cta, .trust-indicators {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 40px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .bento-item.wide {
        grid-column: span 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        background: rgba(248, 250, 252, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger { display: flex; }
    .nav-cta { display: none; }
    
    .hero h1 { font-size: 2.6rem; }
    .hero-cta { flex-direction: column; }
    .trust-indicators { flex-direction: column; gap: 16px; align-items: center; }
    
    .stats-grid { grid-template-columns: 1fr 1fr; }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-item.large, .bento-item.wide {
        grid-column: span 1;
    }
    
    .contact-wrapper { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    
    .timeline-vertical { padding-left: 0; }
    .timeline-vertical::before { display: none; }
    .timeline-step { flex-direction: column; gap: 16px; }
    .step-number { margin-bottom: 8px; }
}

/* Animation Utilities */
.animate-fade-in { animation: fadeIn 1s ease-out forwards; opacity: 0; }
.animate-fade-in-up { animation: fadeInUp 1s ease-out forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}