/* ========================================
   WPBot Marketing Website - Design System
   ======================================== */

/* CSS Variables */
:root {
    /* Primary - WhatsApp Green */
    --wp-green: #25d366;
    --wp-green-hover: #20bd5a;
    --wp-green-dark: #128c7e;
    --wp-green-glow: rgba(37, 211, 102, 0.15);
    --wp-green-soft: rgba(37, 211, 102, 0.08);

    /* Backgrounds */
    --bg-body: #030712;
    --bg-section-alt: #0a0e17;
    --bg-card: rgba(15, 23, 42, 0.6);
    --bg-card-hover: rgba(15, 23, 42, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.03);

    /* Text */
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --text-muted: #64748b;

    /* Accents */
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;

    /* Glass */
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-blur: 20px;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #030712 0%, #0a1628 50%, #071a0e 100%);
    --gradient-green: linear-gradient(135deg, #25d366, #128c7e);
    --gradient-card: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(59, 130, 246, 0.03));

    /* Container */
    --container-max: 1280px;
    --container-narrow: 960px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   Base Reset & Typography
   ======================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-body);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page load transition */
body.loading {
    opacity: 0;
}
body.loaded {
    opacity: 1;
    transition: opacity 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    line-height: 1.2;
    font-weight: 700;
}

a {
    color: var(--wp-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--wp-green-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Layout
   ======================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-alt {
    background: var(--bg-section-alt);
}

/* ========================================
   Navbar
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.navbar-brand svg {
    width: 32px;
    height: 32px;
    color: var(--wp-green);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.navbar-nav a {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--text-white);
}

/* Mega menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all var(--transition-base);
    pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: background var(--transition-fast);
    text-decoration: none;
}

.nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown-item .icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--wp-green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-dropdown-item .icon-box i {
    width: 18px;
    height: 18px;
    color: var(--wp-green);
}

.nav-dropdown-item .item-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.nav-dropdown-item .item-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Navbar actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.25rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.lang-btn.active {
    background: var(--wp-green);
    color: #000;
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle i {
    width: 24px;
    height: 24px;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    text-decoration: none;
    line-height: 1;
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-green);
    color: #000;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.35);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
    border-radius: 12px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--wp-green-soft);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--wp-green);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    width: 14px;
    height: 14px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.hero-stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Background orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.bg-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(37, 211, 102, 0.15);
    top: -100px;
    right: -100px;
    animation: orbFloat1 15s ease-in-out infinite;
}

.bg-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(59, 130, 246, 0.1);
    bottom: -50px;
    left: -100px;
    animation: orbFloat2 20s ease-in-out infinite;
}

.bg-orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(139, 92, 246, 0.08);
    top: 50%;
    left: 50%;
    animation: orbFloat3 18s ease-in-out infinite;
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wp-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   Cards
   ======================================== */

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-base);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(37, 211, 102, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: var(--wp-green-soft);
}

.feature-card .card-icon i {
    width: 24px;
    height: 24px;
    color: var(--wp-green);
}

.feature-card .card-icon.blue { background: rgba(59, 130, 246, 0.1); }
.feature-card .card-icon.blue i { color: var(--accent-blue); }
.feature-card .card-icon.purple { background: rgba(139, 92, 246, 0.1); }
.feature-card .card-icon.purple i { color: var(--accent-purple); }
.feature-card .card-icon.orange { background: rgba(245, 158, 11, 0.1); }
.feature-card .card-icon.orange i { color: var(--accent-orange); }

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.feature-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wp-green);
}

.feature-card .card-link i {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.feature-card:hover .card-link i {
    transform: translateX(4px);
}

/* ========================================
   Feature Grid
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.features-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* ========================================
   How It Works (Steps)
   ======================================== */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wp-green), transparent);
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #000;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========================================
   Stats Section
   ======================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.testimonial-card .stars {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    display: flex;
    gap: 0.15rem;
}

.testimonial-card .stars i {
    width: 16px;
    height: 16px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

.testimonial-card .author-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial-card .author-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(59, 130, 246, 0.05));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Logos/Partners Bar
   ======================================== */

.logos-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.logos-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.5;
}

.logos-grid .logo-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logos-grid .logo-item i {
    width: 24px;
    height: 24px;
}

/* ========================================
   Split Section (Text + Visual)
   ======================================== */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.split-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.split-text p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.split-text .check-list {
    list-style: none;
    margin-bottom: 2rem;
}

.split-text .check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.split-text .check-list li i {
    width: 20px;
    height: 20px;
    color: var(--wp-green);
    flex-shrink: 0;
}

.split-visual {
    position: relative;
}

.split-visual .visual-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* ========================================
   Pricing
   ======================================== */

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.pricing-toggle span.active {
    color: var(--text-white);
    font-weight: 600;
}

.toggle-switch {
    width: 56px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    border: none;
    transition: background var(--transition-fast);
}

.toggle-switch.active {
    background: var(--wp-green);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    top: 3px;
    left: 3px;
    transition: transform var(--transition-fast);
}

.toggle-switch.active::after {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--wp-green);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.1);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: var(--gradient-green);
    z-index: -1;
    opacity: 0.15;
}

.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-green);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.pricing-card .price .currency {
    font-size: 1.25rem;
    vertical-align: super;
}

.pricing-card .price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card .price-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-card .features-list {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-card .features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-card .features-list li:last-child {
    border-bottom: none;
}

.pricing-card .features-list li i {
    width: 18px;
    height: 18px;
    color: var(--wp-green);
    flex-shrink: 0;
}

.pricing-card .features-list li i.x {
    color: var(--text-muted);
}

/* ========================================
   FAQ / Accordion
   ======================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   Contact Form
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--wp-green);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.contact-info-card .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--wp-green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card .info-icon i {
    width: 22px;
    height: 22px;
    color: var(--wp-green);
}

.contact-info-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .navbar-brand {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--wp-green);
    color: #000;
}

.footer-social a i {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.65rem;
}

.footer-column ul a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-column ul a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   Page Header (Sub Pages)
   ======================================== */

.page-header {
    padding: 8rem 0 4rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb span {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text-white);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    line-height: 1.7;
}

/* ========================================
   Feature Detail Page Specific
   ======================================== */

.feature-detail-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.feature-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.feature-hero-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-hero-visual {
    position: relative;
}

/* Capabilities grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.capability-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all var(--transition-base);
}

.capability-card:hover {
    border-color: rgba(37, 211, 102, 0.15);
    transform: translateY(-2px);
}

.capability-card .cap-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--wp-green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.capability-card .cap-icon i {
    width: 20px;
    height: 20px;
    color: var(--wp-green);
}

.capability-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.capability-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Tech specs */
.tech-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.tech-spec-item i {
    width: 18px;
    height: 18px;
    color: var(--wp-green);
    flex-shrink: 0;
}

/* Related features */
.related-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ========================================
   Comparison Table
   ======================================== */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.comparison-table thead {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table td {
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: var(--wp-green);
}

.comparison-table .cross {
    color: var(--text-muted);
}

/* ========================================
   Utility Classes
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gradient-text {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-border {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.1);
}

/* Form messages */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: var(--wp-green);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
}
