/* 
   Bhukta Tech Landing Page Stylesheet
   Theme: Professional B2B Service Agency (Light, Trust-focused, Clean Grid)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Colors - Light Professional Palette */
    --bg-main: #f8fafc;          /* Slate-50: Crisp light background */
    --bg-white: #ffffff;         /* Pure white for sections and cards */
    --bg-alt: #f1f5f9;           /* Slate-100: Secondary light background */
    
    --primary: #1e3a8a;          /* Deep Navy Blue: Signals trust and stability */
    --primary-light: #3b82f6;    /* Vibrant Blue: Highlights and accents */
    --accent-teal: #0f766e;      /* Corporate Teal: Secondary accent */
    --accent-red: #dc2626;       /* Clean Red: Pain points / warnings */
    --whatsapp-green: #128c7e;   /* Authentic WhatsApp Green */
    
    --text-primary: #0f172a;     /* Slate-900: High readability */
    --text-secondary: #334155;   /* Slate-700: Body text */
    --text-muted: #64748b;       /* Slate-500: Muted details */
    
    --border-color: #e2e8f0;     /* Slate-200: Subtle card & section dividers */
    --border-focus: #cbd5e1;     /* Slate-300: Highlighting focus/hover */
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --shadow-card-hover: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);

    /* Layout */
    --max-width: 1200px;
    --nav-height: 80px;
    
    /* Transitions */
    --transition: all 0.2s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

/* Layout Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-tag {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
    display: inline-block;
    font-weight: 700;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-title-center {
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 3rem;
}

.section-subtitle-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* B2B Trust Pillars Block */
.trust-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

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

.trust-pillar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.trust-pillar-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.trust-pillar-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.trust-pillar-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 0.5rem;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--bg-alt);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
    background-color: #0f7065;
    transform: translateY(-1px);
}

/* Cards System */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

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

.agency-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.25rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.agency-card:hover {
    border-color: var(--border-focus);
    box-shadow: var(--shadow-md);
}

/* Pain points icons and styling */
.problem-card {
    border-top: 3px solid var(--accent-red);
}

.problem-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 6px;
    color: var(--accent-red);
    margin-bottom: 1.25rem;
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Solutions cards styling */
.solution-card {
    border-top: 3px solid var(--primary);
}

.solution-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(30, 58, 138, 0.05);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 6px;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.solution-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.solution-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.solution-features svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--text-primary);
}

.logo-img {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.header-cta {
    display: none;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

@media (min-width: 600px) {
    .header-cta {
        display: inline-flex;
    }
}

/* Mobile Drawer Button */
.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 110;
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin-bottom: 5px;
    transition: var(--transition);
}

.mobile-menu-btn span:last-child {
    margin-bottom: 0;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    border-left: 1px solid var(--border-color);
    z-index: 105;
    padding: 100px 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: var(--transition);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.05);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
    text-align: left;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.875rem;
    background: rgba(30, 58, 138, 0.05);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Hero Trust Stats column */
.hero-stats {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Watch Demo visual section */
.demo-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-mockup {
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-mockup:hover {
    border-color: var(--border-focus);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.n8n-nodes-visual {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.node-box {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.node-box::after {
    content: '';
    position: absolute;
    right: -18px;
    width: 18px;
    height: 1px;
    background: var(--border-color);
    top: 50%;
}

.node-box:last-child::after {
    display: none;
}

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    margin: 0 auto 1rem auto;
    transition: var(--transition);
    color: white;
}

.video-mockup:hover .play-btn {
    background-color: var(--primary-light);
    transform: scale(1.05);
}

.play-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Modal Popup (n8n simulator) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transform: scale(0.98);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 2.5rem 1.75rem;
}

.workflow-simulator {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workflow-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
}

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

.flow-canvas {
    background: var(--bg-main);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

@media (min-width: 600px) {
    .flow-canvas {
        flex-direction: row;
        justify-content: center;
    }
}

.flow-node {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    width: 100%;
    max-width: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.flow-node.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.flow-node-icon {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-webhook { background: #f97316; }
.icon-ai { background: #8b5cf6; }
.icon-whatsapp { background: #128c7e; }

.flow-arrow {
    font-size: 1.25rem;
    color: var(--text-muted);
}

@media (max-width: 599px) {
    .flow-arrow {
        transform: rotate(90deg);
    }
}

.simulator-log {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.875rem;
    font-family: monospace;
    font-size: 0.8rem;
    color: #0f766e;
    min-height: 80px;
    max-height: 120px;
    overflow-y: auto;
}

.simulator-controls {
    display: flex;
    justify-content: center;
}

/* WhatsApp Simulator Grid */
.chat-section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .chat-section-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.chat-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .chat-info h2 {
        font-size: 2.5rem;
    }
}

.chat-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Phone shell redesign (Light clean corporate look) */
.phone-mockup {
    width: 100%;
    max-width: 340px;
    height: 520px;
    background: #e2e8f0;
    border: 8px solid #cbd5e1;
    border-radius: 28px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.phone-header {
    background: var(--whatsapp-green);
    color: #ffffff;
    padding: 1.25rem 1rem 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.phone-avatar {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 0.85rem;
}

.phone-contact-name {
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
}

.phone-contact-status {
    font-size: 0.65rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.phone-contact-status::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #25d366;
    border-radius: 50%;
}

.phone-chat-screen {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #efeae2; /* standard classic WA background color */
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-message {
    max-width: 85%;
    padding: 0.6rem 0.875rem;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.4;
    box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}

.message-incoming {
    background: #ffffff;
    color: var(--text-primary);
    align-self: flex-start;
    border-top-left-radius: 0;
}

.message-outgoing {
    background: #e1f3d4; /* standard light-green outgoing WA color */
    color: var(--text-primary);
    align-self: flex-end;
    border-top-right-radius: 0;
}

.message-options {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.25rem;
    align-self: flex-start;
    width: 100%;
}

.chat-option-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--primary);
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.75rem;
    text-align: left;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.chat-option-btn:hover {
    background-color: var(--bg-alt);
    border-color: var(--border-focus);
}

.phone-typing-indicator {
    display: flex;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    align-self: flex-start;
    background: #ffffff;
    border-radius: 8px;
    border-top-left-radius: 0;
    box-shadow: 0 1px 1px rgba(0,0,0,0.08);
    display: none;
}

.phone-typing-indicator span {
    width: 5px;
    height: 5px;
    background-color: var(--text-muted);
    border-radius: 50%;
    animation: typing 1s infinite alternate;
}

.phone-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.phone-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    from { opacity: 0.3; transform: translateY(0); }
    to { opacity: 1; transform: translateY(-3px); }
}

.phone-input-bar {
    background: #f0f2f5;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-input-bar input {
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    font-family: inherit;
    font-size: 0.8rem;
    color: var(--text-primary);
    outline: none;
}

.phone-input-bar button {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
}

.phone-input-bar button:hover {
    color: var(--primary);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

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

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

.pricing-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(30, 58, 138, 0.08);
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.tier-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card.featured .tier-name {
    color: var(--primary);
}

.tier-price {
    font-size: 2.25rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tier-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.tier-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    min-height: 45px;
}

.pricing-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.pricing-features-list li.included {
    color: var(--text-primary);
}

.pricing-features-list svg {
    color: var(--border-focus);
    flex-shrink: 0;
}

.pricing-features-list li.included svg {
    color: var(--primary);
}

.pricing-card .btn {
    width: 100%;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid transparent;
}

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

.faq-icon {
    font-size: 1.1rem;
    transition: var(--transition);
    color: var(--text-muted);
}

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

/* Final CTA Section Banner */
.cta-banner {
    padding: 4.5rem 2rem;
    border-radius: 8px;
    background-color: var(--primary);
    color: #ffffff;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-banner h2 {
    color: #ffffff;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.75rem auto;
}

/* Footer styling */
footer {
    padding: 3.5rem 0 2.5rem 0;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-email {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-email:hover {
    color: var(--primary);
}
