/* ==========================================================================
   CSS Variables & Theme Settings (Virtual Marketing Concepts UI)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lexend:wght@500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

:root {
    /* Color Palette */
    --bg-base: #050505;
    --bg-surface: #131313;
    --bg-surface-elevated: #1c1b1b;
    --bg-surface-light: #2a2a2a;

    --primary: #00dbe9;
    --primary-light: #dbfcff;
    --primary-glow: rgba(0, 219, 233, 0.4);

    --secondary: #cf5cff;
    --secondary-light: #ecb2ff;
    --secondary-glow: rgba(207, 92, 255, 0.4);

    --text-pure: #ffffff;
    --text-main: #e5e2e1;
    --text-muted: #b9cacb;

    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(0, 219, 233, 0.3);

    /* Typography */
    --font-heading: 'Lexend', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --max-width: 1440px;
    --nav-height: 90px;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2.5rem;
    --section-gap: 160px;

    /* Animations */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-base);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-base);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-pure);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

::selection {
    background-color: var(--primary);
    color: #000;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-surface-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

/* ==========================================================================
   Utility Classes (Translating the Tailwind UI)
   ========================================================================== */
.glass-panel {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-color);
}

.rim-glow {
    box-shadow: 0 0 40px -10px rgba(219, 252, 255, 0.2);
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-light), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(0, 219, 233, 0.15) 0%, transparent 70%);
}

.icon-material {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.title-mega {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.title-section {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 400;
}

.eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 16px 40px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: #000;
    border: none;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    background: transparent;
    color: var(--text-pure);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(0, 219, 233, 0.05);
}

/* ==========================================================================
   Master Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(19, 19, 19, 0.6);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    height: 75px;
    background: rgba(19, 19, 19, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(0, 219, 233, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    filter: invert(1);
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    border-radius: 100px;
    background: linear-gradient(to right, #00dbe9, #cf5cff);
    color: #000 !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    border: none;
    box-shadow: 0 0 20px rgba(0, 219, 233, 0.2);
}

.btn-nav:hover {
    filter: brightness(1.15);
    transform: scale(1.02);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-pure);
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--nav-height);
    text-align: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 219, 233, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content p {
    font-size: 1.25rem;
    margin: 2rem auto 3rem;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Abstract 3D Hero Base */
.hero-abstract {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: rgba(18, 18, 18, 0.4);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px 100px 0 0;
    z-index: 1;
    border-bottom: none;
    overflow: hidden;
}

.hero-abstract::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-base), transparent);
}

/* ==========================================================================
   Expertise (Bento Grid)
   ========================================================================== */
.expertise {
    padding: var(--section-gap) 0;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.exp-header-left {
    max-width: 600px;
}

.exp-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.exp-line {
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.exp-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: default;
}

.exp-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.exp-card:hover .exp-arrow {
    opacity: 1;
    transform: translateY(0);
}

.exp-bg-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10rem;
    opacity: 0.05;
    transition: opacity var(--transition-fast);
}

.exp-card:hover .exp-bg-icon {
    opacity: 0.15;
}

.exp-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
}

.exp-card:nth-child(2) .exp-icon,
.exp-card:nth-child(4) .exp-icon {
    color: var(--secondary);
}

.exp-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.exp-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.exp-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

/* ==========================================================================
   ROI Estimator (Interactive)
   ========================================================================== */
.estimator {
    padding: var(--section-gap) 0;
    background-color: #0e0e0e;
}

.est-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.est-inputs {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.est-input-box {
    background: rgba(42, 42, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.est-input-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.est-input-header span:last-child {
    color: var(--primary);
    font-weight: 700;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: #353534;
    border-radius: 2px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: -8px;
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: transform 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.est-result-card {
    padding: 4rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.est-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: var(--primary-glow);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
}

.est-content {
    position: relative;
    z-index: 1;
}

.est-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.est-total {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 2.5rem;
    letter-spacing: -0.05em;
}

.est-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.em-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.em-val {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.em-val.cyan {
    color: var(--primary);
}

.btn-full {
    width: 100%;
    background: #3a3939;
    color: var(--text-pure);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-full:hover {
    background: var(--primary);
    color: #000;
}

/* ==========================================================================
   Campaign Reports (Pure CSS Visuals)
   ========================================================================== */
.reports {
    padding: var(--section-gap) 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rep-card {
    padding: 4px;
    border-radius: var(--radius-lg);
    position: relative;
}

.rep-inner {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: calc(var(--radius-lg) - 4px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rep-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.rep-head p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.rep-head h4 {
    font-size: 2.5rem;
}

.rep-badge {
    background: rgba(0, 219, 233, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.rep-badge.purple {
    background: rgba(207, 92, 255, 0.1);
    color: var(--secondary);
}

/* CSS Bar Chart */
.css-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
}

.c-bar {
    width: 100%;
    background: rgba(0, 219, 233, 0.2);
    border-radius: 4px 4px 0 0;
    transition: height 0.8s ease;
}

.rep-card:hover .c-bar {
    background: rgba(0, 219, 233, 0.4);
}

.rep-card:hover .c-bar:nth-child(1) {
    height: 60% !important;
}

.rep-card:hover .c-bar:nth-child(2) {
    height: 75% !important;
}

.rep-card:hover .c-bar:nth-child(3) {
    height: 65% !important;
}

.rep-card:hover .c-bar:nth-child(4) {
    height: 90% !important;
}

.rep-card:hover .c-bar:nth-child(5) {
    height: 80% !important;
}

.rep-card:hover .c-bar:nth-child(6) {
    height: 100% !important;
}

/* CSS Circle Progress */
.css-circle-wrap {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.css-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid rgba(207, 92, 255, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.css-circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    border-top-color: transparent;
    border-right-color: transparent;
    transform: rotate(-45deg);
    transition: transform 1s ease;
}

.rep-card:hover .css-circle::after {
    transform: rotate(135deg);
}

.css-circle span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
}

/* CSS Horizontal Progress */
.css-horiz {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 120px;
    justify-content: flex-end;
}

.h-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.h-lbl {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.h-track {
    width: 100%;
    height: 8px;
    background: var(--bg-surface-light);
    border-radius: 4px;
    overflow: hidden;
}

.h-fill {
    height: 100%;
    background: var(--primary);
    width: 0;
    transition: width 1s ease;
}

.h-fill.purple {
    background: var(--secondary);
}

.rep-card:hover .h-fill {
    width: 65% !important;
}

.rep-card:hover .h-fill.purple {
    width: 35% !important;
}

/* ==========================================================================
   Testimonials (Scroll Marquee)
   ========================================================================== */
.testimonials {
    padding: var(--section-gap) 0;
    overflow: hidden;
}

.test-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollLeft 40s linear infinite;
    padding: 1rem 5%;
}

.test-track:hover {
    animation-play-state: paused;
}

.test-card {
    min-width: 450px;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.stars {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.test-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2.5rem;
    color: var(--text-main);
}

.test-client {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.test-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-surface-light);
}

.tc-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-pure);
    margin-bottom: 0.2rem;
}

.tc-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Sector Solutions (Verticals)
   ========================================================================== */
.sectors {
    padding: var(--section-gap) 0;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sector-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-surface-light);
}

.sector-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease;
}

/* Simulated backgrounds since we don't have images */
.sector-card:nth-child(1) .sector-bg {
    background: linear-gradient(45deg, #0f2027, #203a43, #2c5364);
}

.sector-card:nth-child(2) .sector-bg {
    background: linear-gradient(45deg, #23074d, #cc5333);
}

.sector-card:nth-child(3) .sector-bg {
    background: linear-gradient(45deg, #141e30, #243b55);
}

.sector-card:hover .sector-bg {
    transform: scale(1.1);
}

.sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-base) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.sector-overlay h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sector-overlay p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.sector-card:hover .sector-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.sector-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition-fast);
}

.sector-card:hover .sector-btn {
    background: var(--primary);
    color: #000;
}

/* ==========================================================================
   Roadmap
   ========================================================================== */
.roadmap {
    padding: var(--section-gap) 0;
    background: var(--bg-surface-elevated);
}

.rm-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.rm-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
}

.rm-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
}

.rm-step:last-child {
    margin-bottom: 0;
}

.rm-content {
    text-align: right;
}

.rm-step:nth-child(even) .rm-content {
    order: 2;
    text-align: left;
}

.rm-step:nth-child(even) .rm-visual {
    order: 1;
    justify-content: flex-end;
}

.rm-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.rm-step:nth-child(2) .rm-num {
    color: var(--secondary);
}

.rm-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rm-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.rm-visual {
    display: flex;
    justify-content: flex-start;
}

.rm-icon-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid rgba(0, 219, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: var(--primary);
}

.rm-step:nth-child(2) .rm-icon-box {
    border-color: rgba(207, 92, 255, 0.2);
    color: var(--secondary);
}

/* ==========================================================================
   Contact Area
   ========================================================================== */
.contact {
    padding: var(--section-gap) 0;
}

.contact-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 60px;
    padding: 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    position: relative;
    overflow: hidden;
}

.cb-bg-icon {
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 40rem;
    color: var(--primary);
    opacity: 0.03;
    pointer-events: none;
}

.c-info h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.c-info p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 400px;
}

.c-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.c-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cm-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 219, 233, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.c-method:nth-child(2) .cm-icon {
    background: rgba(207, 92, 255, 0.1);
    color: var(--secondary);
}

.cm-text p:first-child {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.cm-text p:last-child {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-pure);
}

.c-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-wrap label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.c-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    color: var(--text-pure);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.c-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 219, 233, 0.02);
}

textarea.c-input {
    height: 120px;
    resize: none;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.btn-submit:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* ==========================================================================
   Legal Pages Specific
   ========================================================================== */
.legal-main {
    padding: calc(var(--nav-height) + 120px) 5% 120px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 4rem;
}

.legal-box h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    color: var(--text-pure);
}

.legal-box h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 3rem 0 1rem;
}

.legal-box p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-box ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    list-style-type: disc;
}

.legal-box li {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Master Footer
   ========================================================================== */
.site-footer {
    background: var(--bg-surface-elevated);
    padding-top: var(--section-gap);
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background: linear-gradient(to top, rgba(0, 219, 233, 0.05), transparent);
    pointer-events: none;
}

.footer-top {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.f-huge {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 800;
    color: var(--primary);
    opacity: 0.05;
    line-height: 0.8;
    user-select: none;
}

.f-cta {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-pure);
    display: inline-block;
    margin-top: -3rem;
    transition: var(--transition-fast);
}

.f-cta:hover {
    color: var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.fb-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.fb-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 400px;
    margin-bottom: 2rem;
}

.f-socials {
    display: flex;
    gap: 1rem;
}

.f-soc {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-pure);
    transition: var(--transition-fast);
}

.f-soc:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    border-color: var(--primary);
}

.f-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-pure);
    margin-bottom: 2rem;
}

.f-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.f-col a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.f-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.fb-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fb-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ==========================================================================
   Floating Support Widget
   ========================================================================== */
.support-widget {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 320px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem;
    z-index: 9990;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 219, 233, 0.1);
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-widget.visible {
    transform: translateY(0);
}

.sw-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sw-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(0, 219, 233, 0.3);
    background: var(--bg-surface-light);
}

.sw-info p:first-child {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-pure);
}

.sw-info p:last-child {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sw-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.sw-opt {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: var(--transition-fast);
    cursor: pointer;
}

.sw-opt.active {
    background: rgba(0, 219, 233, 0.1);
    color: var(--primary);
}

.sw-opt:hover:not(.active) {
    background: var(--bg-surface-light);
    color: var(--text-pure);
}

.sw-opt span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-sw {
    width: 100%;
    background: var(--primary);
    color: #000;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-sw:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
@keyframes scrollLeft {
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .est-grid,
    .contact-box {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rm-line {
        display: none;
    }

    .rm-step {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left !important;
    }

    .rm-step:nth-child(even) .rm-content {
        order: 1;
    }

    .rm-step:nth-child(even) .rm-visual {
        order: 2;
        justify-content: flex-start;
    }

    .rm-visual {
        display: none;
    }

    /* Hide visual on tablet/mobile for cleaner look */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .grid-4,
    .sector-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 2.5rem;
        border-radius: var(--radius-xl);
    }

    .c-info h2 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .support-widget {
        display: none;
    }

    /* Hide fixed widget on mobile */
    .hero-buttons {
        flex-direction: column;
    }
}