/* ==========================================================================
   Tilehurst Digital Stylesheet - Premium Web Design Agency Theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & Variables
   -------------------------------------------------------------------------- */
:root {
    --font-heading: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Color Palette */
    --bg-main: #ffffff;
    --bg-surface: #f8fafc;    /* Slate 50 backdrop */
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    
    --border-color: rgba(9, 9, 11, 0.08); /* Dark subtle border */
    --border-color-hover: rgba(2, 132, 199, 0.4); /* Sky blue hover border */
    
    /* Brand Accent Colors (matching the blue-to-cyan brand logo, zero purpleness) */
    --primary: #0284c7;       /* Sky Blue 600 */
    --primary-glow: rgba(2, 132, 199, 0.08);
    --secondary: #2563eb;     /* Royal Blue 600 */
    --accent: #0d9488;        /* Teal 600 */
    
    /* Text Colors */
    --text-primary: #0f172a;   /* Slate 900 */
    --text-secondary: #475569; /* Slate 600 */
    --text-muted: #64748b;     /* Slate 500 */
    
    /* Glass Variables (Light Mode Default) */
    --bg-glass-card: rgba(255, 255, 255, 0.45);
    --border-glass-card: rgba(255, 255, 255, 0.6);
    --shadow-glass-card: rgba(9, 9, 11, 0.04);
    
    --bg-header-glass: rgba(255, 255, 255, 0.45);
    --border-glass-header: rgba(255, 255, 255, 0.6);
    --shadow-glass-header: rgba(9, 9, 11, 0.05);

    --bg-input: rgba(255, 255, 255, 0.5);
    --bg-input-focus: rgba(255, 255, 255, 0.75);
    --border-input: rgba(9, 9, 11, 0.1);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout Constants */
    --header-height: 110px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
}

ul {
    list-style: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #e2e8f0; /* Slate 200 */
    border-radius: 5px;
    border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1; /* Slate 300 */
}

/* --------------------------------------------------------------------------
   2b. Floating Code Particles
   -------------------------------------------------------------------------- */
.code-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.cp {
    position: absolute;
    left: var(--x);
    top: calc(var(--y) + var(--parallax-y, 0px));
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid;
    opacity: 0;
    animation: cp-float var(--dur, 24s) var(--delay, 0s) ease-in-out infinite;
    will-change: transform;
}

/* HTML tags — sky blue tint */
.cp-html {
    color: rgba(2, 132, 199, 0.5);
    background: rgba(2, 132, 199, 0.05);
    border-color: rgba(2, 132, 199, 0.12);
}

/* CSS properties — cyan tint */
.cp-css {
    color: rgba(8, 145, 178, 0.5);
    background: rgba(8, 145, 178, 0.05);
    border-color: rgba(8, 145, 178, 0.12);
}

/* JS snippets — amber/gold tint */
.cp-js {
    color: rgba(202, 138, 4, 0.5);
    background: rgba(202, 138, 4, 0.05);
    border-color: rgba(202, 138, 4, 0.12);
}

/* Symbols — teal tint */
.cp-sym {
    color: rgba(13, 148, 136, 0.5);
    background: rgba(13, 148, 136, 0.05);
    border-color: rgba(13, 148, 136, 0.12);
}

/* Simple vertical bob — cheap on the GPU, no blur */
@keyframes cp-float {
    0%   { transform: translateY(0px);    opacity: 0.35; }
    50%  { transform: translateY(-16px);  opacity: 0.6;  }
    100% { transform: translateY(0px);    opacity: 0.35; }
}

/* Dark mode — slightly brighter */
@media (prefers-color-scheme: dark) {
    .cp-html  { color: rgba(56, 189, 248, 0.55); background: rgba(56, 189, 248, 0.08);  border-color: rgba(56, 189, 248, 0.18); }
    .cp-css   { color: rgba(34, 211, 238, 0.5);   background: rgba(6, 182, 212, 0.06);   border-color: rgba(6, 182, 212, 0.16); }
    .cp-js    { color: rgba(251, 191, 36, 0.55);  background: rgba(202, 138, 4, 0.07);   border-color: rgba(202, 138, 4, 0.18); }
    .cp-sym   { color: rgba(45, 212, 191, 0.55); background: rgba(13, 148, 136, 0.08);  border-color: rgba(13, 148, 136, 0.18); }
}

/* Hide on small screens */
@media (max-width: 768px) {
    .code-particles { display: none; }
}

/* --------------------------------------------------------------------------
   3. Typography & Utility Classes
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px auto;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 12px;
    animation: tag-float 4s ease-in-out infinite;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(2, 132, 199, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. Header & Navigation Menu
   -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    /* No layout properties ever transition */
}

/* Glass pill lives entirely inside ::before.
   Only clip-path and opacity are animated — both run on the GPU compositor
   thread, costing zero layout or paint on scroll. */
.main-header::before {
    content: '';
    position: absolute;
    inset: 0; /* static — never changes size */
    background: var(--bg-header-glass)
                linear-gradient(120deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 45%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass-header);
    box-shadow: 0 8px 32px var(--shadow-glass-header);
    border-radius: 99px;
    pointer-events: none;
    z-index: 0;
    /* Default: pill is collapsed (invisible) */
    opacity: 0;
    clip-path: inset(0 0 0 0 round 0px);
    transition:
        clip-path 0.42s cubic-bezier(0.4, 0, 0.2, 1),
        opacity   0.3s  cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled: clip opens up to reveal the pill shape */
.main-header.scrolled::before {
    opacity: 1;
    clip-path: inset(12px 24px round 99px);
}

.header-container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 36px;
    /* No padding transition — layout-triggering */
}

.logo-container {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 80px;
    width: auto;
    transform-origin: left center;
    /* transform:scale is compositor-only — zero layout cost */
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled .header-logo {
    transform: scale(0.72);
}


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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

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

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

.mobile-nav-toggle {
    display: none;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Nav Menu drawer */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-surface);
    border-left: 1px solid var(--border-color);
    padding: 100px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 999;
    transition: var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-secondary);
}

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

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background gradient glows */
.background-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: -10%;
    animation: pulse-glow 10s ease-in-out infinite;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: 10%;
    right: -10%;
    animation: pulse-glow 14s ease-in-out infinite alternate;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.stat-divider {
    height: 40px;
    width: 1px;
    background: var(--border-color);
}

/* Mockup Layout */
.hero-visual {
    position: relative;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: var(--transition-slow);
}

.mockup-main {
    width: 380px;
    height: 280px;
    z-index: 3;
    top: 40px;
    left: 20px;
    animation: float-main 8s ease-in-out infinite alternate;
}

.mockup-main:hover {
    animation-play-state: paused;
    transform: scale(1.02) translateY(-5px);
    border-color: var(--border-color-hover);
}

.mockup-header {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color);
    gap: 12px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
}

.mockup-dots .dot:nth-child(1) { background: #ef4444; }
.mockup-dots .dot:nth-child(2) { background: #eab308; }
.mockup-dots .dot:nth-child(3) { background: #22c55e; }

.mockup-address {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(9,9,11,0.05); /* Soft dark background for light theme address bar */
    padding: 3px 24px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.mockup-body {
    padding: 16px;
}

.mockup-nav-placeholder {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.m-line {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
}

.m-line.short { width: 40px; }
.m-line.medium { width: 120px; }
.m-line.long { width: 180px; }

.mockup-nav-logo {
    height: 14px;
    width: auto;
    transition: var(--transition-normal);
}

.m-nav-group {
    display: flex;
    gap: 8px;
}

.m-dot {
    width: 6px;
    height: 6px;
    background: var(--border-color);
    border-radius: 50%;
}

.mockup-hero-placeholder {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.m-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

.mockup-grid-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.m-box {
    height: 48px;
    background: rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.mockup-small-1 {
    width: 220px;
    padding: 16px;
    z-index: 4;
    bottom: 30px;
    right: 0px;
    animation: float-slow 6s ease-in-out infinite;
}

.card-status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 2s infinite;
}



/* Animations */
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

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

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

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

@keyframes border-shimmer {
    0%, 100% { border-color: var(--primary); box-shadow: 0 10px 30px rgba(2, 132, 199, 0.05); }
    50% { border-color: var(--accent); box-shadow: 0 10px 35px rgba(13, 148, 136, 0.18); }
}

@keyframes pulse-glow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.08; }
    33% { transform: translate(30px, -50px) scale(1.08); opacity: 0.12; }
    66% { transform: translate(-20px, 20px) scale(0.95); opacity: 0.06; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.08; }
}

/* --------------------------------------------------------------------------
   6. "Why Trust Us?" Section
   -------------------------------------------------------------------------- */
.why-us-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px;
    transition: var(--transition-normal);
}

.why-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.why-icon-box {
    width: 48px;
    height: 48px;
    background: var(--primary-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.why-card:hover .why-icon-box {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.why-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform var(--transition-normal);
}

.why-card:hover .why-icon {
    transform: rotate(8deg) scale(1.05);
}

.why-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. How It Works Section
   -------------------------------------------------------------------------- */
.process-section {
    padding: 100px 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-step {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    border-radius: 12px;
    transition: var(--transition-normal);
    overflow: hidden;
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width var(--transition-normal);
}

.process-step:hover::after {
    width: 100%;
}

.process-step:hover {
    border-color: var(--border-color-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.04);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(2, 132, 199, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.process-step:hover .step-num {
    color: rgba(2, 132, 199, 0.3);
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. Pricing Tiers Section
   -------------------------------------------------------------------------- */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface) 100%);
    border-top: 1px solid var(--border-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
    margin-bottom: 64px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(9, 9, 11, 0.15);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* Highlighted multi-page package */
.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(2, 132, 199, 0.03);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.05);
    animation: border-shimmer 6s ease-in-out infinite;
}

.pricing-card.featured:hover {
    animation-play-state: paused;
    border-color: #38bdf8;
    box-shadow: 0 20px 45px rgba(2, 132, 199, 0.12);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 100px;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-tier-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.tier-name {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.tier-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.tier-price .currency {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.tier-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.tier-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 40px;
}

.features-list-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-pricing {
    width: 100%;
    padding: 14px;
}

/* Disclosures & Notes */
.pricing-disclosure {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.disclosure-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.disclosure-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.disclosure-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.disclosure-main {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.disclosure-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   9. Enquiry / Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
    position: relative;
    padding: 120px 0;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: start;
}

.glow-contact-1 {
    width: 450px;
    height: 450px;
    background: var(--primary);
    top: -10%;
    right: -10%;
    animation: pulse-glow 12s ease-in-out infinite alternate;
}

.glow-contact-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -10%;
    left: -10%;
    animation: pulse-glow 10s ease-in-out infinite alternate-reverse;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-panel-title {
    font-size: 2.25rem;
    margin-bottom: 18px;
}

.contact-panel-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.method-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
}

.method-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(9, 9, 11, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.method-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

a.method-value:hover {
    color: var(--primary);
}

.method-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
    line-height: 1.4;
}

/* Contact Form UI */
.contact-form-panel {
    background: var(--bg-glass-card);
    border: 1px solid var(--border-glass-card);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 24px 60px var(--shadow-glass-card);
    transition: var(--transition-normal);
}

.contact-form-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 55%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(0deg) translate(-10%, -10%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
}

.contact-form-panel:hover::before {
    transform: rotate(0deg) translate(10%, 10%);
}

.enquiry-form {
    position: relative;
    z-index: 2;
    display: block;
}

.form-success-state {
    position: relative;
    z-index: 2;
    display: none;
}

.form-success-state.active {
    display: block;
}

.form-error-state {
    position: relative;
    z-index: 2;
    display: none;
}

.form-error-state.active {
    display: block;
}

.error-icon {
    width: 48px;
    height: 48px;
    color: #ef4444;
}

.enquiry-form.hidden {
    display: none;
}

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

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

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input {
    background: var(--bg-input);
    border: 1px solid var(--border-input);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-input-focus);
    box-shadow: 0 0 14px rgba(2, 132, 199, 0.15);
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a1a1aa' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

.form-select option {
    background-color: var(--bg-surface);
    color: var(--text-primary);
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    position: relative;
}

.btn-send-icon {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.btn-submit:hover .btn-send-icon {
    transform: translateX(4px) translateY(-2px);
}

/* Loader style */
.form-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    position: absolute;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-submit.loading span,
.btn-submit.loading .btn-send-icon {
    visibility: hidden;
}

.btn-submit.loading .form-loader {
    display: block;
}

/* Form Success Container */
.form-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.form-success-state.active {
    display: flex;
}

.success-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-icon {
    width: 36px;
    height: 36px;
    color: #10b981;
}

.success-title {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.success-desc {
    color: var(--text-secondary);
    max-width: 440px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.copy-email-box {
    width: 100%;
    max-width: 460px;
    margin: 0 auto 24px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.copy-email-textarea {
    width: 100%;
    height: 180px;
    background: #ffffff;
    border: 1px solid rgba(9, 9, 11, 0.15);
    border-radius: 8px;
    padding: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
    resize: none;
    line-height: 1.4;
    text-align: left;
}

.btn-copy {
    width: 100%;
    font-size: 0.95rem;
    padding: 10px;
}

.btn-reset-success {
    margin-top: 8px;
}

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 32px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 24px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.social-link-icon:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.social-link-icon svg {
    width: 16px;
    height: 16px;
}

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

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.footer-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.footer-address, .footer-email, .footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.address-icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.wholesale-notice {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   11. Scroll Reveal & Subtle Animations
   -------------------------------------------------------------------------- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered entry for siblings (for grid items like Why Us, Process, and Pricing) */
.why-us-grid .scroll-reveal:nth-child(1) { transition-delay: 0s; }
.why-us-grid .scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.why-us-grid .scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.why-us-grid .scroll-reveal:nth-child(4) { transition-delay: 0.3s; }

.process-grid .scroll-reveal:nth-child(1) { transition-delay: 0s; }
.process-grid .scroll-reveal:nth-child(2) { transition-delay: 0.12s; }
.process-grid .scroll-reveal:nth-child(3) { transition-delay: 0.24s; }
.process-grid .scroll-reveal:nth-child(4) { transition-delay: 0.36s; }

.pricing-grid .scroll-reveal:nth-child(1) { transition-delay: 0s; }
.pricing-grid .scroll-reveal:nth-child(2) { transition-delay: 0.15s; }
.pricing-grid .scroll-reveal:nth-child(3) { transition-delay: 0.3s; }

.animate-fade-in {
    animation: fadeIn 1s forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .animate-slide-up:nth-child(2) {
    animation-delay: 0.15s;
}

.hero-content .animate-slide-up:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-content .animate-slide-up:nth-child(4) {
    animation-delay: 0.45s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.animate-scale-up {
    animation: scaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --------------------------------------------------------------------------
   12. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card:nth-child(3) {
        grid-column: span 2;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .nav-links, .btn-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    /* Toggle icon states */
    .mobile-nav-toggle .close-icon {
        display: none;
    }
    
    .mobile-nav-toggle.active .menu-icon {
        display: none;
    }
    
    .mobile-nav-toggle.active .close-icon {
        display: block;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card:nth-child(3) {
        grid-column: span 1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-panel {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   13. Device-Default Media Query (Prefers-Color-Scheme: Dark)
   -------------------------------------------------------------------------- */
@media (prefers-color-scheme: dark) {
    :root {
        /* Color Palette Overrides for Dark Theme */
        --bg-main: #09090b;       /* Zinc 950 */
        --bg-surface: #121215;    /* Zinc 900 custom */
        --bg-card: rgba(20, 20, 23, 0.6);
        --bg-card-hover: rgba(28, 28, 33, 0.85);
        
        --border-color: rgba(255, 255, 255, 0.08);
        --border-color-hover: rgba(56, 189, 248, 0.4);
        
        /* Brand Accent Colors (matching the blue-to-cyan brand logo, zero purpleness) */
        --primary: #38bdf8;       /* Sky Blue 400 */
        --primary-glow: rgba(56, 189, 248, 0.3);
        --secondary: #60a5fa;     /* Royal Blue 400 */
        --accent: #2dd4bf;        /* Teal 400 */
        
        /* Text Colors */
        --text-primary: #f4f4f5;   /* Zinc 100 */
        --text-secondary: #a1a1aa; /* Zinc 400 */
        --text-muted: #71717a;     /* Zinc 500 */

        /* Glass Variables (Dark Mode Overrides) */
        --bg-glass-card: rgba(20, 20, 23, 0.45);
        --border-glass-card: rgba(255, 255, 255, 0.08);
        --shadow-glass-card: rgba(0, 0, 0, 0.4);
        
        --bg-header-glass: rgba(9, 9, 11, 0.45);
        --border-glass-header: rgba(255, 255, 255, 0.12);
        --shadow-glass-header: rgba(0, 0, 0, 0.3);

        --bg-input: rgba(255, 255, 255, 0.03);
        --bg-input-focus: rgba(255, 255, 255, 0.06);
        --border-input: rgba(255, 255, 255, 0.08);
    }
    
    /* Logo remains colourful in dark mode */
    
    ::-webkit-scrollbar-thumb {
        background: #27272a; /* Zinc 800 */
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #3f3f46;
    }
    
    .main-header.scrolled::before {
        background: linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 40%);
    }

    .contact-form-panel::before {
        background: linear-gradient(
            115deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.04) 45%,
            rgba(255, 255, 255, 0.12) 50%,
            rgba(255, 255, 255, 0.04) 55%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0) 100%
        );
    }
    
    .mockup-card {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    
    .pricing-card:hover {
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-nav-menu {
        background-color: var(--bg-surface);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .mockup-address {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .m-box {
        background: rgba(255, 255, 255, 0.02);
    }
    
    .method-icon-box {
        background: rgba(255, 255, 255, 0.03);
    }
}
