/* ==========================================
   A-Polo CrediCalc - Landing Page Styles
   ========================================== */

/* CSS Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 40px rgba(99,102,241,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(99,102,241,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.5);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn div small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    line-height: 1;
}

.btn div strong {
    display: block;
    font-size: 18px;
    line-height: 1.2;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: white;
    font-family: var(--font-heading);
}

.navbar.scrolled .logo { color: var(--dark); }

.logo strong { font-weight: 800; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-links a { color: var(--gray-600); }
.nav-links a:hover { color: white; }
.navbar.scrolled .nav-links a:hover { color: var(--primary); }

.nav-cta {
    background: rgba(255,255,255,0.15);
    padding: 8px 20px !important;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.navbar.scrolled .nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    border-color: transparent;
}

.nav-cta:hover {
    background: rgba(255,255,255,0.25) !important;
}

.navbar.scrolled .nav-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span { background: var(--dark); }

/* ==========================================
   HERO
   ========================================== */
.hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4338ca 60%, #6366f1 100%);
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    top: -200px; right: -200px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    bottom: -100px; left: -100px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--primary-light), transparent 70%);
    top: 30%; left: 10%;
    animation: float 10s ease-in-out infinite;
}

.shape-4 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #06b6d4, transparent 70%);
    top: 20%; right: 30%;
    animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { color: white; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-heading);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup { position: relative; }

.phone-frame {
    width: 280px;
    height: 580px;
    background: var(--dark);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4), inset 0 0 0 2px rgba(255,255,255,0.1);
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--dark);
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-header-mock {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 40px 20px 20px;
    text-align: center;
}

.app-title-mock {
    color: white;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-heading);
}

.app-content-mock {
    padding: 20px;
}

.input-mock {
    margin-bottom: 16px;
}

.input-mock span {
    font-size: 11px;
    color: var(--gray-500);
    display: block;
    margin-bottom: 2px;
}

.input-mock strong {
    font-size: 18px;
    color: var(--dark);
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.slider-mock {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.slider-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    animation: slider-anim 3s ease-in-out infinite alternate;
}

@keyframes slider-anim {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.result-mock {
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.result-item:first-child {
    border-bottom: 1px solid var(--gray-100);
}

.result-item span {
    font-size: 12px;
    color: var(--gray-500);
}

.result-item strong {
    font-size: 18px;
    font-family: var(--font-heading);
}

.phone-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 50%);
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ==========================================
   SECTIONS COMMON
   ========================================== */
section { padding: 100px 0; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--gray-500);
}

/* ==========================================
   FEATURES
   ========================================== */
.features {
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent, var(--primary)), var(--primary));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, white), color-mix(in srgb, var(--accent) 5%, white));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works {
    background: var(--gray-50);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    flex: 1;
    max-width: 320px;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray-500);
}

.step-connector {
    display: flex;
    align-items: center;
    opacity: 0.5;
}

/* ==========================================
   CALCULATORS
   ========================================== */
.calculators { background: white; }

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

.calc-card {
    background: linear-gradient(135deg, #fafafe, #f5f3ff);
    border: 1px solid rgba(99,102,241,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.calc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99,102,241,0.3);
}

.calc-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.calc-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.calc-card p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    background: var(--gray-50);
}

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

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.testimonial-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ==========================================
   FAQ
   ========================================== */
.faq { background: white; }

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
}

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

.faq-chevron {
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--gray-400);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ==========================================
   CTA
   ========================================== */
.cta-section {
    padding: 60px 0 100px;
    background: white;
}

.cta-card {
    background: linear-gradient(135deg, #1e1b4b, #4338ca, #6366f1);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236,72,153,0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(99,102,241,0.1) 0%, transparent 40%);
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.cta-card p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 36px;
    position: relative;
}

.cta-card .btn { position: relative; }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 32px;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--primary-light); }

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-page { padding-top: 100px; }

.legal-hero {
    background: linear-gradient(135deg, #1e1b4b, #4338ca);
    padding: 60px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.legal-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, white, transparent);
}

.legal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.legal-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 48px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.legal-content h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-2);
    margin: 28px 0 12px;
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    margin: 12px 0 20px 24px;
    list-style: disc;
}

.legal-content ol { list-style: decimal; }

.legal-content li {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--dark-2);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

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

.legal-toc {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 40px;
}

.legal-toc h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px;
}

.legal-toc ol {
    margin: 0 0 0 20px;
    list-style: decimal;
}

.legal-toc li {
    margin-bottom: 6px;
}

.legal-toc a {
    color: var(--primary);
    font-size: 14px;
    text-decoration: none;
}

.legal-toc a:hover { text-decoration: underline; }

/* Contact page specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.contact-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.contact-card svg {
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray-500);
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

/* About page specific */
.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.value-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 24px;
}

.value-card h3 {
    font-size: 16px;
    color: var(--dark);
    margin: 0 0 8px;
}

.value-card p {
    font-size: 14px;
    margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 40px; }

    .features-grid,
    .calc-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 20px;
        color: white !important;
    }

    .hero { padding: 140px 0 100px; min-height: auto; }

    .features-grid,
    .calc-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-connector { transform: rotate(90deg); }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    section { padding: 64px 0; }

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

    .about-values {
        grid-template-columns: 1fr;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 32px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }
}
