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

:root {
    --navy: #0A1628;
    --navy-dark: #060D1A;
    --navy-light: #142743;
    --teal: #0DAB8C;
    --teal-dark: #09966F;
    --teal-light: #34D9B5;
    --highlight: #34D9B5;
    --gold: #C9A962;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --light-grey: #F1F5F9;
    --grey: #E2E8F0;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --gradient-primary: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    --gradient-teal: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    --gradient-hero: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul { list-style: none; }

img { max-width: 100%; height: auto; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(13, 171, 140, 0.35);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 171, 140, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

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

.btn-outline {
    background: transparent;
    border-color: var(--teal);
    color: var(--teal);
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(10, 22, 40, 0.3);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

.section {
    padding: 100px 0;
}

.section-grey {
    background: var(--off-white);
}

.section-navy {
    background: var(--navy);
    color: var(--white);
}
.section-navy h2,
.section-navy h3,
.section-navy p,
.cta-section h2,
.cta-section p {
    color: var(--white);
}
.section-navy .cta-buttons,
.cta-section .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}
.section-navy .btn-secondary {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}
.section-navy .btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}
.cta-section .hero-ctas {
    margin-top: 24px;
}

.section-teal {
    background: var(--gradient-teal);
}

.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header.scrolled .header-inner {
    height: 70px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(13, 171, 140, 0.3);
}

.logo-icon::before {
    content: '';
    width: 14px;
    height: 14px;
    background: var(--white);
    border-radius: 3px;
}

.logo-text span:first-child {
    color: var(--teal);
}

.logo-text span:last-child {
    color: var(--navy);
}

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

.nav-item {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-item:hover {
    color: var(--teal);
    background: rgba(13, 171, 140, 0.08);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid var(--grey);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-dark);
    border-radius: 8px;
}

.nav-dropdown-menu a:hover {
    background: var(--off-white);
    color: var(--teal);
}

.nav-cta {
    display: flex;
    gap: 12px;
    margin-left: 24px;
}

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    overflow-y: auto;
    z-index: 999;
}

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

.mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--grey);
}

/* Hero */
.hero {
    padding: 180px 0 120px;
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(13, 171, 140, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 98, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas, .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-buttons {
    margin-top: 24px;
}

.hero-note {
    font-size: 14px;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-note::before {
    content: '✓';
    color: var(--teal);
}

/* Trust Strip */
.trust-strip {
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(13, 171, 140, 0.1) 0%, rgba(13, 171, 140, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    border: 1px solid rgba(13, 171, 140, 0.2);
}

.trust-icon svg {
    width: 22px;
    height: 22px;
}

.trust-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--teal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(13, 171, 140, 0.1) 0%, rgba(13, 171, 140, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--teal);
    border: 1px solid rgba(13, 171, 140, 0.2);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--teal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.service-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--grey);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-teal);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(13, 171, 140, 0.3);
}

.feature-card h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

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

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 40px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table th,
.pricing-table td {
    padding: 20px 24px;
    text-align: left;
}

.pricing-table th {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-table td {
    border-bottom: 1px solid var(--grey);
    font-size: 16px;
}

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

.price-from {
    font-weight: 700;
    color: var(--teal);
    font-size: 18px;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.plan-card {
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
}

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

.plan-card.popular {
    border-color: var(--teal);
    box-shadow: 0 0 0 2px var(--teal), var(--shadow-lg);
    transform: scale(1.02);
}

.plan-card.popular:hover {
    transform: scale(1.02) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-teal);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(13, 171, 140, 0.4);
}

.plan-name {
    font-size: 22px;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.plan-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-description {
    color: var(--text-muted);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--grey);
}

.plan-features {
    margin-bottom: 28px;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.plan-feature::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    font-size: 14px;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 15px;
}

.toggle-label.active {
    color: var(--text-dark);
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
    background: var(--grey);
    border-radius: 28px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.toggle-switch.active {
    background: var(--teal);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch.active::after {
    transform: translateX(28px);
}

.save-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #B8944A 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(201, 169, 98, 0.4);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 48px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--grey);
}

.comparison-table th {
    background: var(--off-white);
    font-weight: 600;
    font-size: 14px;
}

.comparison-table td:first-child {
    font-weight: 500;
}

.check { color: var(--teal); font-weight: 700; }
.cross { color: var(--text-light); }

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--teal);
    transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
}

/* Why Us */
.whyUs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.whyUs-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--grey);
    transition: all 0.3s ease;
}

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

.whyUs-card .icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-teal);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(13, 171, 140, 0.3);
}

.whyUs-card .icon svg {
    width: 28px;
    height: 28px;
}

.whyUs-card h4 {
    margin-bottom: 12px;
}

.whyUs-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Solution Banner */
.solution-banner {
    text-align: center;
    padding: 80px 40px;
    background: var(--gradient-teal);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.solution-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.solution-banner h2 {
    margin-bottom: 16px;
    position: relative;
}

.solution-banner p {
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Trust Cards */
.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--grey);
}

.trust-card .icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    color: var(--teal);
}

.trust-card .icon svg {
    width: 48px;
    height: 48px;
}

.trust-card h4 {
    margin-bottom: 12px;
}

.trust-card p {
    color: var(--text-muted);
    font-size: 14px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-col a:hover {
    color: var(--teal-light);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: var(--off-white);
    border-bottom: 1px solid var(--grey);
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
}

/* Features Strip */
.features-strip {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey);
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.features-list span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.features-list span::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
}

/* Domain Table */
.domain-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.domain-table th,
.domain-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--grey);
}

.domain-table th {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--grey);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 171, 140, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 998;
    border-top: 1px solid var(--grey);
}

.cookie-banner p {
    max-width: 600px;
    font-size: 14px;
    color: var(--text-muted);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--teal);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 44px; }
    h2 { font-size: 32px; }
    
    .services-grid,
    .features-grid,
    .pricing-cards,
    .trust-cards,
    .whyUs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-items {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    
    .nav,
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .services-grid,
    .features-grid,
    .pricing-cards,
    .trust-cards,
    .whyUs-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

/* Utility Classes */
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.hidden { display: none; }