/* ========================================
   VOXTREAM BRASIL - DESIGN LIMPO E MODERNO
   ======================================== */

:root {
    --primary: #00a8cc;
    --primary-dark: #0088aa;
    --secondary: #5b5bff;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --light-card: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --gradient-primary: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-bg);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ========================================
   HEADER
   ======================================== */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.nav-top {
    background: var(--gray-900);
    padding: 8px 0;
    font-size: 0.85rem;
}

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

.nav-top-left {
    display: flex;
    gap: 25px;
}

.nav-top-link {
    color: var(--gray-300);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-top-link:hover {
    color: var(--primary);
}

.nav-top-right {
    display: flex;
    gap: 15px;
}

.nav-top-right a {
    color: var(--gray-300);
    font-size: 1rem;
    transition: all 0.3s;
}

.nav-top-right a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-main {
    padding: 15px 0;
    background: var(--white);
    transition: all 0.3s;
}

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

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

.nav-logo img {
    height: 50px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.nav-logo:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
}

.nav-logo-text {
    display: none;
}

@media (min-width: 768px) {
    .nav-logo-text {
        display: block;
    }
}

.nav-logo-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.1;
}

.nav-logo-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--gray-900);
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-menu > li > a {
    color: var(--gray-700);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: var(--primary);
    background: rgba(0, 168, 204, 0.1);
}

.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.has-dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.dropdown li a:hover {
    color: var(--primary);
    background: rgba(0, 168, 204, 0.08);
    padding-left: 25px;
}

.nav-cta-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 168, 204, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gray-700);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* Mobile */
@media (max-width: 992px) {
    .nav-toggle { display: block; }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active { display: flex; }
    
    .nav-menu > li > a {
        padding: 15px;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--gray-100);
        display: none;
        margin-top: 10px;
    }
    
    .has-dropdown:hover .dropdown { display: block; }
    
    .nav-cta-btn, .nav-top { display: none; }
}

/* ========================================
   HERO SECTION - MODERNO E ATRAENTE
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.hero-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    bottom: 10%;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8fafc' fill-opacity='0.1' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInDown 0.6s ease;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--white);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-description strong {
    color: #00d4ff;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #fff;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.5);
}

.btn-hero-outline {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: #1a1a2e;
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.trust-item i {
    color: #00ff88;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
    animation: fadeInUp 0.6s ease 1s both;
}

.hero-stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.4rem; }
    .hero-section { padding: 140px 0 60px; }
    .hero-stats { flex-wrap: wrap; gap: 25px; }
    .hero-buttons { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .hero-circle-1 { width: 250px; height: 250px; }
    .hero-circle-2 { width: 150px; height: 150px; }
}

/* ========================================
   SECTIONS
   ======================================== */

section {
    padding: 80px 0;
    position: relative;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 50px;
    font-size: 1.05rem;
}

/* ========================================
   PLANS SECTION
   ======================================== */

.plans-section {
    background: var(--light-bg);
}

.plans-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-showcase-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
}

.plan-showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.plan-showcase-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(0, 168, 204, 0.08) 0%, var(--white) 100%);
    transform: scale(1.03);
}

.plan-showcase-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.plan-showcase-header {
    text-align: center;
    margin-bottom: 25px;
}

.plan-showcase-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.plan-showcase-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.price-currency {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-decimal {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.plan-showcase-features {
    margin-bottom: 25px;
}

.plan-showcase-features ul { text-align: left; }

.plan-showcase-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-500);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-showcase-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 0.75rem;
}

.plan-showcase-card .btn-hero-primary {
    width: 100%;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
}

/* ========================================
   INCLUDED SECTION
   ======================================== */

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

.included-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.included-item {
    background: var(--light-bg);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.included-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.included-item > i {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.included-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.included-text p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: var(--light-bg);
}

.about-section-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-section-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gray-900);
}

.about-section-content p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 18px;
    line-height: 1.85;
}

/* ========================================
   SITE SECTION
   ======================================== */

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

.site-section-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.site-section-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.site-section-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
}

.site-section-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 25px;
}

.site-section-content .btn-hero-primary {
    background: var(--white);
    color: var(--primary);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--gray-900);
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 30px;
}

/* ========================================
   FOOTER
   ======================================== */

.main-footer {
    background: var(--gray-900);
    padding: 50px 0 20px;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

.footer-brand .footer-logo {
    height: 40px;
    margin-bottom: 18px;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--gray-300);
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--white);
}

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

.footer-links ul li a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact p i {
    color: var(--primary);
    width: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social { justify-content: center; }
    .footer-links ul li a:hover { padding-left: 0; }
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    padding: 170px 0 80px;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin: 0 auto;
}

/* ========================================
   SERVICE CARDS
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   FEATURE CARDS
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card > i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 168, 204, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========================================
   PRICING TABLES
   ======================================== */

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(0, 168, 204, 0.08) 0%, var(--white) 100%);
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--gray-900);
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.pricing-amount span {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li i {
    color: var(--primary);
    margin-right: 10px;
}

/* ========================================
   FORM STYLES
   ======================================== */

.contact-form {
    max-width: 580px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

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

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    section { padding: 55px 0; }
    .section-heading { font-size: 1.6rem; }
    .page-header { padding: 150px 0 55px; }
    .page-header h1 { font-size: 2rem; }
}

/* ========================================
   CUSTOM PLAN
   ======================================== */

.custom-plan-section {
    background: var(--light-bg);
    border-top: 1px solid var(--gray-200);
}

.custom-plan-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.custom-plan-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--gray-900);
}

.custom-plan-content h3 strong {
    color: var(--primary);
}

.custom-plan-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}