/* ==========================================================================
   Design System & Styling for LAQA CARE Showcase Website
   ========================================================================== */

/* Custom Variables */
:root {
    --bg-dark: #f8fafc;
    --bg-deep: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.7);
    
    --primary-gradient: linear-gradient(135deg, #0096c7 0%, #0077b6 100%);
    --accent-gradient: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    --glow-cyan: rgba(0, 150, 199, 0.08);
    --glow-indigo: rgba(79, 70, 229, 0.1);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-accent: #0077b6;
    
    --border-color: rgba(15, 23, 42, 0.08);
    --border-hover: rgba(0, 119, 182, 0.35);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s ease;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --container-max: 1200px;
}

/* CSS Reset & General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 80px 0;
}

/* Glassmorphism card utility */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.03);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
}

.btn-gradient {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.2);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(15, 23, 42, 0.04);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Badges & Section Headers */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 119, 182, 0.06);
    color: var(--text-accent);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 119, 182, 0.15);
    margin-bottom: 20px;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-lead {
    color: var(--text-secondary);
    font-size: clamp(16px, 2vw, 18px);
}

.text-center {
    text-align: center;
}

/* Site Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.header-container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.mobile-nav-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-normal);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.mobile-nav-overlay.active {
    left: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 80%;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-secondary);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0f172a 30%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    color: var(--text-secondary);
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-media {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.color-selector {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    position: relative;
    z-index: 10;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.color-dot:hover {
    transform: scale(1.25);
}

.color-dot.active {
    border-color: var(--text-primary);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
}

.glass-media-wrapper {
    position: relative;
    width: 85%;
    aspect-ratio: 1;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1) 60%);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    z-index: 100;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
}

.hero-product-img {
    width: 75%;
    object-fit: contain;
}

.glow-ring {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    border: 1px dashed rgba(0, 119, 182, 0.12);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

/* Tech / Features Section */
.tech-section {
    position: relative;
    background-color: var(--bg-deep);
}

.tech-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.tech-media-landing {
    min-height: 380px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
    aspect-ratio: 16/9;
}

.tech-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 30px;
    text-align: left;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(0, 119, 182, 0.06);
    color: var(--text-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 119, 182, 0.12);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}

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

/* Metrics Dashboard */
.metrics-dashboard {
    padding: 50px;
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-icon {
    font-size: 24px;
    color: var(--text-accent);
    margin-bottom: 12px;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Benefits Section */
.benefits-section {
    position: relative;
}

.benefits-bg-glow {
    position: absolute;
    bottom: -10%;
    right: 10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, var(--glow-indigo) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.benefits-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-gradient);
    color: #0b0f19;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    min-height: 250px;
}

.benefit-card {
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.benefit-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* App Showcase Section */
.app-section {
    background-color: var(--bg-deep);
}

.app-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.app-features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.app-features-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.app-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(0, 242, 254, 0.05);
    color: var(--text-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 242, 254, 0.1);
}

.app-features-list h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.app-features-list p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Pure-CSS Phone Frame */
.app-mockup {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: #000;
    border: 12px solid #22252a;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 4px 2px rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    width: 140px;
    height: 25px;
    background: #22252a;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 35px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #0f172a;
}

.app-screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
}

.app-user-info {
    display: flex;
    gap: 10px;
    align-items: center;
}

.app-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #0b0f19;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-user-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
}

.app-user-status {
    font-size: 11px;
    color: var(--text-accent);
    display: block;
}

.app-date {
    font-size: 11px;
    color: var(--text-secondary);
}

.app-screen-progress {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 15px;
    position: relative;
}

.simulator-cup-container {
    width: 90px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.simulator-cup-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.progress-inner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pct-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 4px;
}

.pct-sub {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.app-screen-simulator-control {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 15px;
}

.simulator-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: #e2e8f0;
    outline: none;
    cursor: pointer;
}

/* Chrome, Safari, Opera, Edge */
.simulator-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: var(--radius-full);
}

.simulator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--slider-thumb-color, #0077b6);
    box-shadow: 0 0 10px var(--slider-thumb-color, rgba(0, 119, 182, 0.4));
    cursor: pointer;
    margin-top: -6px;
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.simulator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Firefox */
.simulator-slider::-moz-range-track {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: var(--radius-full);
}

.simulator-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--slider-thumb-color, #0077b6);
    box-shadow: 0 0 10px var(--slider-thumb-color, rgba(0, 119, 182, 0.4));
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.simulator-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.app-screen-stats {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.app-stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 8px;
}

.app-stat-row:last-child {
    margin-bottom: 0;
}

.app-stat-row span {
    color: var(--text-secondary);
}

.app-stat-row strong {
    color: var(--text-primary);
}

.app-screen-graph {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 12px;
}

.graph-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 70px;
    padding: 0 10px;
    margin-bottom: 4px;
}

.graph-bar {
    width: 14px;
    background: rgba(0, 119, 182, 0.15);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: background 0.3s;
}

.graph-bar:hover,
.graph-bar:last-child {
    background: var(--primary-gradient);
}

.graph-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-secondary);
    padding: 0 6px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 16px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-secondary);
}

/* News Section */
.news-section {
    position: relative;
    background-color: var(--bg-deep);
}

.news-bg-glow {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 60%);
    pointer-events: none;
}

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

.news-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 30px;
}

.news-date {
    font-size: 12px;
    color: var(--text-accent);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.news-card-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-card-content p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* FAQ Accordion Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    padding-right: 20px;
}

.faq-icon-arrow {
    font-size: 18px;
    color: var(--text-accent);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-body {
    max-height: 500px;
}

.faq-content {
    padding: 0 30px 24px 30px;
    color: var(--text-secondary);
    font-size: 15px;
    border-top: 1px solid rgba(255,255,255,0.02);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(0, 242, 254, 0.05);
    color: var(--text-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 242, 254, 0.1);
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.contact-item p {
    font-size: 16px;
    font-weight: 500;
}

.contact-meta {
    margin-top: 40px;
    font-size: 12px;
    color: var(--text-secondary);
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--border-hover);
    box-shadow: 0 0 10px rgba(0, 119, 182, 0.05);
}

.form-status {
    font-size: 14px;
    text-align: center;
}

.form-status.success {
    color: #10b981;
}

.form-status.error {
    color: #ef4444;
}

/* Footer styling */
.site-footer {
    background-color: #f1f5f9;
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 14px;
    max-width: 320px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Fallback / Loading animation */
.loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-secondary);
    padding: 40px;
    font-style: italic;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 60px 0;
    }
    
    .tech-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .tech-content {
        order: 1;
    }
    
    .tech-media-landing {
        order: 2;
        min-height: auto;
        display: flex;
        justify-content: center;
    }
    
    .hero-container,
    .app-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .benefits-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .btn-nav {
        padding: 6px 14px;
        font-size: 13px;
        width: auto !important;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .btn:not(.btn-nav) {
        width: 100%;
    }
    
    .btn-nav {
        width: auto !important;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-dashboard {
        padding: 30px 20px;
    }
}
