/* CSS Design System for Vero Panel - Illuminated/Warm Corporate (VeroBots Inspired) */

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

:root {
    /* ===== COLORS (VeroBots Brand Standard) ===== */
    --blue: #142840;          /* Deep Navy (Corporate Primary) */
    --green: #059669;         /* Success Green (Free/VPS CTA accents) */
    --violet: #4c1d95;        /* Brand Violet (Enterprise & Tech accents) */
    --white: #ffffff;
    --dark: #111827;          /* Body text color */
    --bg: #f0ede8;            /* Warm Off-White */
    --accent-light: #e3ded1;  /* Accent warm beige border/pills */
    
    /* Semantic Aliases */
    --bg-primary: var(--white);
    --bg-secondary: var(--bg);
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-glass: rgba(255, 255, 255, 0.75);
    --text-primary: var(--dark);
    --text-secondary: #4b5563; /* Medium Gray */
    --text-muted: #9ca3af;
    --text-light: var(--white);
    
    /* Borders & Outlines */
    --border-color: rgba(20, 40, 64, 0.1);
    --border-glow: rgba(76, 29, 149, 0.25);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    /* Layout & Geometry */
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(20, 40, 64, 0.08);
    --shadow-xl: 0 20px 50px rgba(20, 40, 64, 0.12);
    --shadow-premium: 0 25px 60px rgba(20, 40, 64, 0.15), inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue);
}

a {
    color: var(--violet);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--blue);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 5px;
    border: 2px solid var(--bg-secondary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--violet);
}

/* Warm Dynamic Background spots */
.warm-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at 10% 15%, rgba(76, 29, 149, 0.03) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 85%, rgba(5, 150, 105, 0.03) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(20, 40, 64, 0.02) 0%, transparent 60%);
}

/* Container & Spacing */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* Navigation Header: Two-Row Architecture */
.header-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--blue);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: transform var(--transition-normal);
}

/* Top Row: Logo & Action Elements */
.header-top {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--green) 0%, var(--violet) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Searchable Lang Selector Mockup */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-flag {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 1px;
}

/* Auth CTA Button */
.btn-auth {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--green) 0%, #047857 100%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25);
    transition: var(--transition-normal);
}

.btn-auth:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    color: var(--white);
}

/* Bottom Row: Navigation Menu */
.header-bottom {
    background: var(--blue);
    position: relative;
}

/* Dynamic Animated Sweep Border */
.header-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--blue) 0%, 
        var(--green) 25%, 
        var(--violet) 50%, 
        var(--blue) 75%, 
        var(--green) 100%
    );
    background-size: 200% 100%;
    animation: sweep-effect 12s linear infinite;
    z-index: 2;
}

@keyframes sweep-effect {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.header-bottom-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 54px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    height: 100%;
}

.nav-links > li {
    height: 100%;
}

.nav-links > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}

.nav-links > li:first-child > a {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links > li > a:hover, .nav-links > li > a.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.nav-links > li > a.active {
    box-shadow: inset 0 -3px 0 var(--green);
}

/* Mobile Toggle menu button */
.menu-toggle-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
    font-size: 1.5rem;
}

/* Interactive Page Hero */
.hero-new {
    padding-top: 200px;
    padding-bottom: 110px;
    background: radial-gradient(circle at 80% 20%, rgba(76, 29, 149, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(5, 150, 105, 0.06);
    border: 1px solid rgba(5, 150, 105, 0.15);
    color: var(--green);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-badge-new .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--green);
    border-radius: 50%;
    display: inline-block;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.hero-title-group {
    margin-bottom: 24px;
}

.title-line-blue {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.title-line-green {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--green);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-subtitle-new {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-subtitle-new span.text-green {
    color: var(--green);
    font-weight: 600;
}

.hero-subtitle-new span.text-violet {
    color: var(--violet);
    font-weight: 600;
}

/* Feature pills in Hero */
.hero-features {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

.feature-pill-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.feature-pill-new svg {
    width: 16px;
    height: 16px;
    color: var(--violet);
    flex-shrink: 0;
}

/* CTA buttons Group */
.hero-cta-new {
    display: flex;
    gap: 16px;
}

/* Main Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-green {
    background: linear-gradient(135deg, var(--green) 0%, #047857 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(5, 150, 105, 0.35);
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    color: var(--white);
}

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

.btn-outline-blue:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 40, 64, 0.15);
}

/* 3D perspective frames on images */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.perspective-3d {
    width: 100%;
    max-width: 500px;
    background: var(--white);
    border: 4px solid var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: var(--transition-slow);
}

.perspective-3d:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.perspective-3d img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating social proof badges */
.floating-badge {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-slow 5s ease-in-out infinite;
    z-index: 5;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.badge-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg);
}

.badge-text {
    font-size: 0.75rem;
    line-height: 1.3;
}

.badge-text strong {
    color: var(--blue);
    display: block;
}

/* Glassmorphic cards grid */
.grid-3-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-2-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.card-icon-wrapper {
    width: 52px;
    height: 52px;
    background-color: rgba(76, 29, 149, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    margin-bottom: 24px;
    box-shadow: inset 0 2px 4px rgba(76, 29, 149, 0.05);
}

.card-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.card-title-new {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--blue);
}

.card-text-new {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-cta-link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--violet);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-cta-link:hover {
    color: var(--blue);
}

/* Section Header standard */
.section-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 64px auto;
}

.label-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--violet);
    margin-bottom: 16px;
}

.label-pill .dot {
    width: 6px;
    height: 6px;
    background: var(--violet);
    border-radius: 50%;
}

.title-section {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.descr-section {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Interactive Performance Showcase */
.showcase-container {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

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

.progress-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.progress-track {
    background-color: var(--bg-secondary);
    height: 24px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.progress-bar {
    height: 100%;
    border-radius: 6px;
    transition: width 1s ease-out;
}

.progress-bar.green-fill {
    background: linear-gradient(90deg, var(--green) 0%, #047857 100%);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.progress-bar.red-fill {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

/* Premium 3-column Pricing cards layout */
.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 40px;
}

.pricing-card-premium {
    background: var(--white);
    border: 2px solid var(--accent-light);
    border-radius: var(--radius-md);
    padding: 48px 36px;
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
    transition: var(--transition-normal);
}

.pricing-card-premium.featured {
    border-color: var(--violet);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(180deg, rgba(76, 29, 149, 0.02) 0%, var(--white) 100%);
}

.pricing-card-premium.enterprise {
    border-color: var(--blue);
}

/* Floating Ribbons */
.floating-ribbon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.floating-ribbon.green-ribbon {
    background: linear-gradient(135deg, var(--green) 0%, #047857 100%);
}

.floating-ribbon.violet-ribbon {
    background: linear-gradient(135deg, var(--violet) 0%, #3b0764 100%);
}

.floating-ribbon.blue-ribbon {
    background: linear-gradient(135deg, var(--blue) 0%, #0f172a 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--bg-secondary);
    padding-bottom: 20px;
}

.pricing-amount-row {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-amount-row span.period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.pricing-checklist {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-checklist li {
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(20, 40, 64, 0.03);
}

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

.pricing-checklist li svg {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
}

/* Action button for pricing */
.btn-pricing {
    width: 100%;
}

/* Comparison Table */
.table-container {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.styled-table th, .styled-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.styled-table th {
    background-color: var(--bg-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--blue);
}

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

.styled-table td.active-cell {
    background-color: rgba(76, 29, 149, 0.01);
    font-weight: 600;
}

/* High-Trust Callout Box */
.trust-callout-box {
    background-color: rgba(5, 150, 105, 0.05);
    border-left: 3px solid var(--green);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-top: 32px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Timeline Layout (Founder Resume) */
.timeline-enhanced {
    position: relative;
    padding-left: 32px;
    border-left: 2px solid var(--accent-light);
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
}

.timeline-node {
    position: relative;
}

.timeline-node::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--violet);
    box-shadow: 0 0 0 4px var(--white);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-title-text {
    font-size: 1.25rem;
    color: var(--blue);
}

.timeline-date {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--violet);
}

.timeline-body {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Contact Layout page */
.contact-grid-main {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.contact-card-sidebar {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-channel-item {
    display: flex;
    gap: 20px;
}

.contact-channel-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(76, 29, 149, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    flex-shrink: 0;
}

.contact-channel-details h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--blue);
}

.contact-channel-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-card-premium {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

.form-group-item label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--blue);
}

.form-input-element {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    background-color: var(--bg-secondary);
}

.form-input-element:focus {
    outline: none;
    border-color: var(--violet);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(76, 29, 149, 0.15);
}

textarea.form-input-element {
    resize: vertical;
    min-height: 140px;
}

/* Footer Section */
footer {
    background-color: var(--blue);
    padding: 80px 0 40px 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

footer h4 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.footer-grid-wrapper {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand-intro p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-nav-list a:hover {
    color: var(--white);
    padding-left: 2px;
}

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

.footer-base-links {
    display: flex;
    gap: 24px;
}

.footer-base-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-base-links a:hover {
    color: var(--white);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .header-top {
        padding: 12px 0;
    }
    
    .menu-toggle-btn {
        display: block;
    }
    
    .header-bottom {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header-bottom.active {
        display: block;
    }
    
    .header-bottom-container {
        height: auto;
        padding: 12px 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    
    .nav-links > li {
        width: 100%;
    }
    
    .nav-links > li > a {
        padding: 14px 24px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-links > li:first-child > a {
        border-left: none;
    }
    
    .nav-links > li:last-child > a {
        border-bottom: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .hero-features {
        flex-wrap: wrap;
    }
    
    .perspective-3d {
        transform: none;
        max-width: 100%;
    }
    
    .perspective-3d:hover {
        transform: scale(1.01);
    }
    
    .grid-3-columns, .pricing-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .grid-3-columns, .grid-2-columns, .pricing-wrapper, .contact-grid-main, .footer-grid-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-base {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
