/* ============================================
   SMARTSITE - PROFESSIONAL DESIGN SYSTEM
   HTML/CSS/JS Version
   ============================================ */

/* ============================================
   VARIABLES & TOKENS
   ============================================ */
:root {
    /* Colors */
    --primary: #10b981; /* Emerald */
    --primary-dark: #047857; /* Deeper Emerald */
    --primary-light: #d1fae5;
    --dark: #0b1120; /* Enterprise Navy */
    --dark-secondary: #1e293b; /* Slate 800 */
    --light: #f8fafc; /* Slate 50 */
    --light-secondary: #f1f5f9; /* Slate 100 */
    --text-primary: #0f172a; /* Slate 900 */
    --text-secondary: #475569; /* Slate 600 - Better Contrast */
    --text-light: #ffffff;
    --border: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.1);
    --danger: #ef4444;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 96px; /* New Enterprise Spacing */
    --spacing-5xl: 120px; /* New Enterprise Spacing */
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.35);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mt-xl {
    margin-top: var(--spacing-2xl);
}

.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: inline-flex;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: inherit;
    font-size: 15px;
    padding: 12px 22px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-sm {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 16px 30px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.btn .arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-primary);
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 32px;
    position: relative;
    border: 2px solid var(--primary);
}
.logo-mark::after {
    content: '';
    position: absolute;
    top: 6px;
    right: -4px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}
.logo-mark::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -4px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.logo-subtext {
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-top: 2px;
    text-transform: uppercase;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 110px;
    background: linear-gradient(135deg, #0b1530 0%, #15244d 60%, #1f3170 100%);
    color: var(--text-light);
    margin-top: 60px;
}

@media (min-width: 768px) {
    .hero {
        padding: 170px 0 140px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('Gemini_Generated_Image_v6h1qv6h1qv6h1qv.png') center/cover no-repeat;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 21, 48, 0.85), rgba(21, 36, 77, 0.7) 60%, rgba(31, 49, 112, 0.75));
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    margin-bottom: var(--spacing-lg);
}

.badge-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-title {
    font-size: clamp(32px, 5.5vw, 60px);
    font-weight: 800;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.text-highlight {
    background: linear-gradient(135deg, #10b981, #6ee7b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: var(--spacing-2xl);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--spacing-4xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--spacing-5xl) 0;
    }
}

.section-white {
    background: var(--text-light);
}

.section-light {
    background: linear-gradient(to bottom, var(--light-secondary), var(--text-light));
}

.section-dark {
    background: linear-gradient(135deg, #0b1530 0%, #15244d 60%, #1f3170 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.section-head {
    max-width: 680px;
    margin: 0 auto var(--spacing-2xl);
    text-align: center;
}

.section-head h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    margin-bottom: var(--spacing-md);
}

.section-head p {
    font-size: 16px;
    color: var(--text-secondary);
}

.section-head-light p {
    color: rgba(255, 255, 255, 0.8);
}

.section-head-light h2 {
    color: var(--text-light);
    margin-top: var(--spacing-lg);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--text-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.card-highlight {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 50px -20px rgba(15, 29, 58, 0.35);
    position: relative;
}

.ribbon {
    position: absolute;
    top: -12px;
    right: 22px;
    background: var(--primary);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
}

.card-head {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.card-head h3 {
    font-size: 18px;
    font-weight: 600;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.icon-bad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.icon-good {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-dark);
}

.list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.list li {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    color: var(--text-secondary);
}

.bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 9px;
}

.bullet-bad {
    background: var(--danger);
}

.bullet-good {
    background: var(--primary-dark);
}

.list li:has(.bullet-good) {
    color: var(--text-primary);
    font-weight: 500;
}

.card-feature {
    cursor: pointer;
}

.card-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -20px rgba(15, 29, 58, 0.35);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b1530 0%, #15244d 60%, #1f3170 100%);
    color: var(--text-light);
    font-size: 22px;
    margin-bottom: var(--spacing-lg);
}

.card-feature h3,
.card-step h3 {
    margin-bottom: var(--spacing-md);
    font-size: 18px;
    font-weight: 600;
}

.card-feature p,
.card-step p {
    font-size: 14px;
    color: var(--text-secondary);
}

.card-step {
    position: relative;
}

.step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
}

.step-num {
    font-size: 36px;
    font-weight: 800;
    color: rgba(15, 29, 58, 0.18);
}

/* ============================================
   AI SECTION
   ============================================ */
.ai-grid {
    margin-top: var(--spacing-2xl);
    align-items: flex-start;
}

.chat-wrap {
    display: flex;
    justify-content: center;
}

.phone {
    width: 100%;
    max-width: 380px;
    background: #0f1525;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.phone-head {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: #161e2e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    font-size: 20px;
    flex-shrink: 0;
}

.phone-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.phone-status {
    font-size: 12px;
    color: #34d399;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 0 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse 2s infinite;
}

.phone-body {
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    height: 300px;
    overflow-y: auto;
}

.msg {
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-sm);
}

.msg-client {
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    font-size: 14px;
    flex-shrink: 0;
}

.bubble {
    max-width: 78%;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.45;
    border-radius: 18px;
}

.bubble-agent {
    background: #1e293b;
    color: rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 6px;
}

.bubble-client {
    background: #1b3a73;
    color: var(--text-light);
    border-bottom-right-radius: 6px;
}

.bubble.typing {
    display: flex;
    gap: 4px;
    padding: 12px 14px;
}

.bubble.typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: bounce 1.2s infinite;
}

.bubble.typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.bubble.typing span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    40% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

.phone-foot {
    background: #161e2e;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 14px;
}

.phone-input {
    background: #0f1525;
    border-radius: var(--radius-full);
    padding: 10px 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.ai-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ai-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 22px;
    backdrop-filter: blur(6px);
    transition: all var(--transition-normal);
}

.ai-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
}

.ai-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.ai-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.ai-card p {
    margin-top: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-grid {
    align-items: center;
    gap: var(--spacing-2xl);
}

@media (max-width: 768px) {
    .form-grid {
        gap: var(--spacing-xl);
    }
}

.form-copy h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.form-copy > p {
    margin-top: var(--spacing-md);
    color: rgba(255, 255, 255, 0.8);
}

.form-list {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.form-card {
    background: var(--text-light);
    color: var(--text-primary);
    padding: 28px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px -20px rgba(15, 29, 58, 0.35);
}

@media (min-width: 768px) {
    .form-card {
        padding: 34px;
    }
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.field input,
.field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--text-light);
    font: inherit;
    font-size: 14px;
    transition: all var(--transition-fast);
    outline: none;
}

.field input:focus,
.field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-success {
    margin-top: 10px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.form-legal {
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--border);
    background: var(--light-secondary);
    padding: 48px 0 28px;
}

.footer-grid h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-grid ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-grid a:hover {
    color: var(--text-primary);
}

.footer-about {
    margin-top: var(--spacing-md);
    max-width: 320px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-bottom {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-bottom p + p {
    margin-top: 6px;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px -10px rgba(16, 185, 129, 0.55);
    transition: all var(--transition-fast);
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 40px -10px rgba(16, 185, 129, 0.65);
}

.wa-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
    animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.wa-icon {
    position: relative;
    z-index: 10;
    font-size: 24px;
}

/* ============================================
   LOGOS SECTION (TRUST)
   ============================================ */
.section-logos {
    padding: var(--spacing-xl) 0;
    background: var(--light-secondary);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.logos-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
}

.logos-track-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-track-wrap::before,
.logos-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logos-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--light-secondary) 0%, transparent 100%);
}

.logos-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--light-secondary) 0%, transparent 100%);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.logo-item {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-secondary);
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 30px)); }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-card {
    background: var(--light);
    border: 1px solid var(--border);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.testimonial-quote::before {
    content: '"';
    font-size: 48px;
    color: var(--primary-light);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
    z-index: 0;
}

.testimonial-quote span {
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    border-top: 1px solid var(--border);
    padding-top: var(--spacing-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 13px;
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--text-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--spacing-lg);
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    font-family: inherit;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--light-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--text-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer-inner {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .header {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .hero {
        padding: 100px 0 80px;
        margin-top: 50px;
    }

    .section {
        padding: var(--spacing-2xl) 0;
    }

    .grid {
        gap: var(--spacing-md);
    }

    .card {
        padding: var(--spacing-md);
    }

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

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}
