/* ================= GLOBAL VARIABLES & RESET ================= */
:root {
    --color-bg-main: #02030a;
    --color-bg-secondary: #050818;
    --color-text-primary: #ffffff;
    --color-text-secondary: #9ca3b6;
    --color-accent-cyan: #37f3ff;
    --color-accent-blue: #2563eb;
    --glass-bg: rgba(13, 18, 33, 0.85);
    --glass-border: rgba(148, 163, 184, 0.35);
    --glow-shadow: 0 0 26px rgba(55, 243, 255, 0.55);

    --font-header: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;

    --section-spacing: 96px;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-header);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

h1 { font-size: clamp(2.6rem, 4.2vw, 3.8rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 3.2vw, 2.6rem); line-height: 1.1; }
h3 { font-size: 1.4rem; margin-bottom: 1rem; }

a { text-decoration: none; color: inherit; transition: color 0.25s ease, opacity 0.25s ease; }
ul { list-style: none; }

.container {
    width: 88%;
    max-width: 1180px;
    margin: 0 auto;
}

.small-container { max-width: 820px; }

.highlight-text {
    color: var(--color-accent-cyan);
    text-shadow: 0 0 14px rgba(55, 243, 255, 0.45);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    max-width: 640px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.05rem;
}

/* ================= GLASS CARD ================= */
.glass-card {
    background: radial-gradient(circle at top left, rgba(55, 243, 255, 0.1), transparent 55%),
                radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.14), transparent 60%),
                var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 1.9rem 2.1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(55, 243, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9), var(--glow-shadow);
}

/* ================= BUTTONS ================= */
.button-group {
    display: flex;
    gap: 1.4rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.6rem;
    border-radius: 999px;
    font-family: var(--font-header);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.hero-cta-primary {
    color: #f9fafb;
    border-color: rgba(148, 246, 255, 0.9);
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.35) 0, transparent 60%),
        linear-gradient(135deg, #0b172a, #020815);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.85), 0 0 38px rgba(55, 243, 255, 0.55);
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02));
    opacity: 0.9;
    mix-blend-mode: screen;
}

.hero-cta-primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.95), 0 0 52px rgba(55, 243, 255, 0.9);
    border-color: rgba(191, 250, 255, 1);
}

.hero-cta-secondary {
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.7);
    background: linear-gradient(135deg, #060a16, #020716);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.9);
}

.hero-cta-secondary::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.06), rgba(15, 23, 42, 0.9));
    opacity: 0.9;
}

.hero-cta-secondary:hover {
    border-color: rgba(148, 246, 255, 0.8);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 1), 0 0 40px rgba(55, 243, 255, 0.4);
    color: #f9fafb;
}

/* ================= SECTIONS ================= */
section { padding: var(--section-spacing) 0; position: relative; }

/* ================= HEADER ================= */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    background: radial-gradient(circle at top left, rgba(55, 243, 255, 0.2), transparent 55%),
                rgba(2, 3, 15, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.85);
}

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

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 246, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-header);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent-cyan);
    box-shadow: 0 0 18px rgba(55, 243, 255, 0.7);
    background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.2), transparent 60%), #020617;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-family: var(--font-header);
}

.main-nav a { opacity: 0.8; }
.main-nav a:hover { opacity: 1; color: var(--color-accent-cyan); }

.nav-cta {
    padding: 0.55rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 246, 255, 0.7);
    background: radial-gradient(circle at top left, rgba(55, 243, 255, 0.25), transparent 60%),
                linear-gradient(135deg, #020617, #020913);
    box-shadow: 0 0 18px rgba(55, 243, 255, 0.4);
    opacity: 1 !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 0 1.2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 0.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-link {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-header);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-text-secondary);
    transition: color 0.2s;
}

.mobile-link:hover { color: var(--color-accent-cyan); }

.mobile-cta {
    margin: 0.5rem 1.5rem 0;
    text-align: center;
    padding: 0.7rem 1.5rem;
    border: 1px solid rgba(148, 246, 255, 0.7);
    border-radius: 999px;
    color: var(--color-accent-cyan) !important;
}

/* ================= HERO ================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: left;
    background:
        radial-gradient(circle at top center, rgba(15, 23, 42, 0.35), rgba(2, 3, 10, 0.55) 55%),
        radial-gradient(ellipse at 80% 50%, rgba(37, 99, 235, 0.15), transparent 60%),
        linear-gradient(to bottom, #020616, #030a1e 40%, #020a18 100%);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.32) 75%),
        radial-gradient(circle at left 40%, rgba(55, 243, 255, 0.12) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-cyan);
    border: 1px solid rgba(55, 243, 255, 0.4);
    border-radius: 999px;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.8rem;
    background: rgba(55, 243, 255, 0.05);
    box-shadow: 0 0 16px rgba(55, 243, 255, 0.2);
}

.hero-content h1 { letter-spacing: 0.12em; }

.hero-content .subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-top: 1.4rem;
    max-width: 640px;
}

.hero-content .subtitle strong { color: var(--color-text-primary); }

.hero-button-group {
    justify-content: flex-start;
    margin-top: 2.8rem;
}

/* ================= PROBLEM SECTION ================= */
.problem-section { background: var(--color-bg-secondary); }

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3.5rem;
}

.problem-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.problem-icon {
    font-family: Georgia, serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--color-accent-cyan);
    opacity: 0.5;
}

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

.transition-block {
    text-align: left;
    padding: 3rem 0;
    max-width: 680px;
    border-top: 1px solid var(--glass-border);
}

.transition-text {
    font-family: var(--font-header);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.3;
}

.transition-text em {
    color: var(--color-accent-cyan);
    font-style: normal;
    display: block;
    text-shadow: 0 0 20px rgba(55, 243, 255, 0.5);
}

.transition-sub {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* ================= CASE STUDY ================= */
.case-study-section { padding: var(--section-spacing) 0; }

.case-study-card {
    background:
        radial-gradient(circle at top left, rgba(55, 243, 255, 0.15), transparent 50%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.2), transparent 55%),
        rgba(5, 12, 30, 0.95);
    border: 1px solid rgba(55, 243, 255, 0.4);
    border-radius: 24px;
    padding: 3rem 3.5rem;
    box-shadow: 0 0 60px rgba(55, 243, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.8);
    max-width: 900px;
    margin: 0 auto;
}

.case-study-label {
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent-cyan);
    margin-bottom: 1rem;
}

.case-study-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.75rem;
}

.case-study-body p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.case-study-result {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.result-number {
    font-family: var(--font-header);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 700;
    color: var(--color-accent-cyan);
    text-shadow: 0 0 20px rgba(55, 243, 255, 0.6);
}

.result-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    max-width: 140px;
}

.case-study-how {
    margin-top: 2rem;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
}

/* ================= PRICING ================= */
.pricing-section { background: var(--color-bg-secondary); }

.pricing-section .section-title,
.pricing-section .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 980px;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2.5rem;
    position: relative;
}

.pricing-card-premium {
    border-color: rgba(55, 243, 255, 0.6);
    background:
        radial-gradient(circle at top left, rgba(55, 243, 255, 0.15), transparent 55%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.2), transparent 60%),
        rgba(5, 12, 30, 0.95);
    box-shadow: 0 0 50px rgba(55, 243, 255, 0.15), 0 20px 60px rgba(0, 0, 0, 0.85);
}

.pricing-badge {
    display: inline-block;
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    width: fit-content;
}

.pricing-badge.entry {
    color: var(--color-text-secondary);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-badge.premium {
    color: var(--color-accent-cyan);
    border: 1px solid rgba(55, 243, 255, 0.5);
    background: rgba(55, 243, 255, 0.08);
    box-shadow: 0 0 14px rgba(55, 243, 255, 0.2);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-family: var(--font-header);
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--color-text-primary);
}

.pricing-card-premium .price-amount { color: var(--color-accent-cyan); text-shadow: 0 0 18px rgba(55, 243, 255, 0.5); }

.price-period {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.pricing-note, .pricing-promise {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-style: italic;
    padding: 0.9rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--color-accent-cyan);
    border-radius: 0 8px 8px 0;
}

.pricing-promise { font-style: normal; font-size: 1rem; color: var(--color-text-primary); }

.pricing-features {
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid var(--glass-border);
    padding-top: 0.25rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    font-size: 0.93rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li span:last-child { flex: 1; }

.pricing-features li strong { color: var(--color-text-primary); }
.pricing-features li em { color: var(--color-text-primary); }

.check-icon {
    color: var(--color-accent-cyan);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 3px;
    text-shadow: 0 0 8px rgba(55, 243, 255, 0.5);
    width: 16px;
    text-align: center;
}

.pricing-cta {
    margin-top: auto;
    text-align: center;
    width: 100%;
}

.pricing-cta-premium {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.85), 0 0 50px rgba(55, 243, 255, 0.7);
}

/* ================= ABOUT ================= */
.about-section .section-title,
.about-section .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}
.about-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-profile {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 0.5rem;
}

.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 2px solid rgba(55, 243, 255, 0.75);
    box-shadow:
        0 0 12px rgba(55, 243, 255, 0.75),
        0 0 28px rgba(55, 243, 255, 0.45),
        0 0 50px rgba(55, 243, 255, 0.2);
}

.about-profile-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-profile-text strong {
    font-family: var(--font-header);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

.about-profile-text span {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.04em;
}

.about-text p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
}

.about-text strong { color: var(--color-text-primary); }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
}

.stat-number {
    font-family: var(--font-header);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    text-align: center;
}

/* ================= FAQ ================= */
.faq-section .section-title,
.faq-section .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.faq-wrapper { max-width: 800px; margin: 0 auto; }

.faq-item {
    padding: 0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-item:hover { transform: none; }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-family: var(--font-header);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-accent-cyan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question { color: var(--color-accent-cyan); }
.faq-item.active .faq-question::after { transform: rotate(45deg); }

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

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--color-text-secondary);
    font-size: 0.98rem;
}

/* ================= CONTACT ================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(0,0,0,0.20));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 3rem;
    position: relative;
}

.glow-border {
    border: 1px solid transparent;
    position: relative;
    background-clip: padding-box;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(to bottom right, rgba(55, 243, 255, 0.35), rgba(55, 243, 255, 0.10), transparent);
    opacity: 0.45;
}

.contact-content h2 { margin-bottom: 1rem; }
.contact-content p { color: var(--color-text-secondary); margin-bottom: 0.5rem; }

.contact-sidebar h4 { margin-bottom: 1rem; color: var(--color-text-primary); }

.contact-sidebar ul li {
    margin-bottom: 0.8rem;
    color: var(--color-text-secondary);
    display: flex;
}

.contact-sidebar ul li::before {
    content: '•';
    color: var(--color-accent-cyan);
    margin-right: 10px;
    flex-shrink: 0;
}

.email-contact { margin-top: 2rem; }
.email-contact p { color: var(--color-text-secondary); margin-bottom: 0.25rem; font-size: 0.9rem; }
.email-contact a { word-break: break-all; font-weight: 600; }

/* ================= FOOTER ================= */
footer {
    padding: 2.8rem 0;
    background:
        radial-gradient(circle at top left, rgba(55, 243, 255, 0.2), transparent 55%),
        rgba(2, 3, 15, 0.88);
    border-top: 1px solid var(--glass-border);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a:hover { color: var(--color-accent-cyan); }

/* ================= SCROLL ANIMATIONS ================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.9s ease forwards;
    animation-delay: 0.2s;
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .brand-name { font-size: 0.9rem; }
    .about-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 72px 0; }

    .hero-section { padding-top: 110px; padding-bottom: 90px; }
    .hero-content h1 { font-size: 2.2rem; }

    .button-group { flex-direction: column; gap: 1rem; }
    .btn { width: 100%; }

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

    .case-study-card { padding: 2rem 1.5rem; }
    .case-study-result { grid-template-columns: 1fr; gap: 1.2rem; }

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

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

    .contact-wrapper { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.9rem; }
    .hero-content .subtitle { font-size: 1rem; }
    .stats-grid { grid-template-columns: 1fr; }
}
