/* ═══════════════════════════════════════
   RESET & VARIABLES
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* LIGHT MODE — Ocean / Tide Theme */
    --bg: #F7FAFB;
    --bg-warm: #EEF5F7;
    --bg-card: #FFFFFF;
    --bg-dark: #0B1D2C;
    --bg-dark-soft: #132D42;
    --text: #0B1D2C;
    --text-secondary: #3D5A6E;
    --text-muted: #7A9BAD;
    --text-light: #EEF5F7;
    --accent: #0891B2;
    --accent-hover: #0E7490;
    --accent-light: #ECFEFF;
    --accent-subtle: rgba(8, 145, 178, 0.06);
    --accent-secondary: #06B6D4;
    --green: #059669;
    --green-light: #ECFDF5;
    --orange: #EA580C;
    --orange-light: #FFF7ED;
    --border: #D1E4EA;
    --border-hover: #A8CBD6;
    --shadow-sm: 0 1px 3px rgba(11,29,44,0.04), 0 1px 2px rgba(11,29,44,0.06);
    --shadow-md: 0 4px 20px rgba(11,29,44,0.06), 0 2px 8px rgba(11,29,44,0.04);
    --shadow-lg: 0 12px 40px rgba(11,29,44,0.08), 0 4px 16px rgba(11,29,44,0.04);
    --shadow-xl: 0 20px 60px rgba(11,29,44,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --tide: #06B6D4;
    --tide-deep: #0E4D64;
    --tide-foam: rgba(6, 182, 212, 0.08);
}

[data-theme='dark'] {
    --bg: #0B1720;
    --bg-warm: #0F1F2E;
    --bg-card: #132838;
    --bg-dark: #1A3A50;
    --bg-dark-soft: #1E4560;
    --text: #E8F4F8;
    --text-secondary: #A8CCD9;
    --text-muted: #6A9DB2;
    --text-light: #0B1720;

    --accent: #22D3EE;
    --accent-hover: #67E8F9;
    --accent-light: rgba(34, 211, 238, 0.12);
    --accent-secondary: #06B6D4;

    --green: #34D399;
    --green-light: rgba(52, 211, 153, 0.15);

    --orange: #F97316;
    --orange-light: rgba(249, 115, 22, 0.15);

    --border: #1E3A4F;
    --border-hover: #2A5068;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.5);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.7);

    --tide: #22D3EE;
    --tide-deep: #0E4D64;
    --tide-foam: rgba(34, 211, 238, 0.06);
}

html {
    scroll-behavior: auto; /* Handled by Lenis */
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

::selection {
    background: var(--accent);
    color: white;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s var(--ease);
    background: transparent;
}

.nav.scrolled {
    background: var(--bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0;
}

[data-theme='dark'] .nav.scrolled {
    background: rgba(11, 23, 32, 0.92);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text);
}

.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}

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

.nav-cta-btn {
    background: var(--accent);
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

[data-theme='dark'] .nav-cta-btn { color: #0B1720; }

.nav-cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
    transition: color 0.3s, background 0.3s;
}
.theme-toggle-btn:hover {
    color: var(--text);
    background: var(--bg-warm);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
    padding: 4px;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s var(--ease), opacity 0.3s;
    border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text);
}

/* ═══════════════════════════════════════
   BADGE COMPONENT
   ═══════════════════════════════════════ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    text-transform: uppercase;
}

.badge-green {
    background: var(--green-light);
    color: var(--green);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #042F3D 0%, #064E5E 40%, #0E7490 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0 5.5rem;
    color: #E8FFFE;
}

[data-theme='dark'] .hero {
    background: linear-gradient(160deg, #041E28 0%, #063544 40%, #0B5A6E 100%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    top: -260px;
    right: -140px;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.3) 0%, rgba(6, 182, 212, 0) 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    left: -100px;
    bottom: 10%;
    background: radial-gradient(circle at center, rgba(34, 211, 238, 0.15) 0%, rgba(34, 211, 238, 0) 72%);
    z-index: 0;
}

.hero-slash {
    display: none;
}

.hero-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 3rem;
}

.hero-copy {
    max-width: 640px;
}

.hero-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(214, 231, 255, 0.88);
    margin-bottom: 1rem;
}

.hero-badge {
    margin-bottom: 1.4rem;
    display: flex;
    justify-content: flex-start;
}

.hero .badge-green {
    background: rgba(5, 150, 105, 0.2);
    color: #A7F3D0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.2vw, 5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.hero-title .highlight {
    color: #67E8F9;
    position: relative;
}

.hero-description {
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgba(229, 238, 252, 0.95);
    max-width: 600px;
    margin: 0 0 2.2rem;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

.hero .btn-primary {
    background: #22D3EE;
    color: #042F3D;
    font-weight: 700;
}

.hero .btn-primary:hover {
    background: #67E8F9;
    box-shadow: 0 10px 32px rgba(34, 211, 238, 0.35);
}

.hero .btn-outline {
    color: #F8FBFF;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.hero .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.14);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent);
    color: white;
    padding: 0.95rem 2.2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}
[data-theme='dark'] .btn-primary { color: #0B1720; }

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
}

.btn-primary svg { width: 18px; height: 18px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--text);
    padding: 0.95rem 2.2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    transition: border-color 0.3s, background 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--text);
    background: rgba(0,0,0,0.02);
}

[data-theme='dark'] .btn-outline:hover { background: rgba(255,255,255,0.05); }


.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem 1.6rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(224, 237, 255, 0.92);
}

.hero-trust-item svg {
    width: 18px;
    height: 18px;
    color: #6EE7B7;
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-laptop {
    width: min(560px, 100%);
    margin-left: auto;
    border-radius: 20px;
    padding: 14px;
    background: linear-gradient(160deg, #E0F2F4 0%, #B2D8E0 100%);
    box-shadow: 0 28px 60px rgba(4, 47, 61, 0.46);
    transform: perspective(1200px) rotateY(-14deg) rotateX(6deg) rotate(-6deg);
    position: relative;
}

.hero-laptop::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
    width: 72%;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.24);
    filter: blur(12px);
}

.hero-screen {
    background: #FFFFFF;
    border: 1px solid #D4DCE8;
    border-radius: 12px;
    overflow: hidden;
}

.hero-screen-bar {
    height: 24px;
    background: #EAF0F9;
    border-bottom: 1px solid #DBE3F0;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
}

.hero-screen-bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #A4B2C8;
}

.hero-screen-body {
    padding: 18px;
}

.hero-ui-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.hero-ui-brand {
    width: 92px;
    height: 10px;
    border-radius: 999px;
    background: #0E7490;
}

.hero-ui-menu {
    width: 148px;
    height: 8px;
    border-radius: 999px;
    background: #C9D4E6;
}

.hero-ui-hero {
    height: 130px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0E7490 0%, #22D3EE 100%);
    margin-bottom: 12px;
}

.hero-ui-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero-ui-card {
    height: 72px;
    border-radius: 8px;
    background: #E7EDF7;
}

.hero-phone {
    position: absolute;
    right: -12px;
    bottom: 16px;
    width: 126px;
    border-radius: 27px;
    padding: 8px;
    background: linear-gradient(180deg, #0B1D2C 0%, #164E63 100%);
    border: 2px solid #1E6A7E;
    box-shadow: 0 20px 40px rgba(4, 47, 61, 0.45);
    transform: rotate(6deg);
}

.hero-phone-notch {
    width: 52px;
    height: 10px;
    border-radius: 999px;
    background: #07141F;
    margin: 0 auto 6px;
}

.hero-phone-screen {
    background: #F8FBFF;
    border-radius: 18px;
    padding: 10px 8px;
}

.hero-phone-hero {
    height: 72px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0E7490 0%, #67E8F9 100%);
    margin-bottom: 8px;
}

.hero-phone-line {
    height: 6px;
    border-radius: 999px;
    background: #CAD5E8;
    margin-bottom: 5px;
}

.hero-phone-line.short {
    width: 70%;
}

/* ═══════════════════════════════════════
   SOCIAL PROOF BAR
   ═══════════════════════════════════════ */
.social-proof {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-warm);
}

.social-proof-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-proof-stat {
    text-align: center;
}

.social-proof-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text);
    line-height: 1;
}

.social-proof-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    font-weight: 500;
}

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

/* ═══════════════════════════════════════
   PROBLEM / PAIN POINTS
   ═══════════════════════════════════════ */
.problems {
    padding: 6rem 0;
}

.problems-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
}

.section-title .highlight { color: var(--accent); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    line-height: 1.7;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.problem-icon.red { background: rgba(239, 68, 68, 0.1); }
.problem-icon.orange { background: var(--orange-light); }
.problem-icon.yellow { background: rgba(234, 179, 8, 0.1); }

.problem-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.problem-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ═══════════════════════════════════════
   ABOUT / PERSONAL
   ═══════════════════════════════════════ */
.about {
    padding: 6rem 0;
    background: var(--bg-warm);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-card);
}

.about-experience-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
[data-theme='dark'] .about-experience-badge { color: #0B1720; }

.about-experience-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
}

.about-experience-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.about-role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-text + .about-text { margin-top: 1rem; }

.about-checkmarks {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.about-check {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 500;
}

.about-check svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services {
    padding: 6rem 0;
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
    transform-origin: left;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    color: var(--accent);
    transition: background 0.3s, color 0.3s;
}

.service-card:hover .service-icon-wrap {
    background: var(--accent);
    color: white;
}
[data-theme='dark'] .service-card:hover .service-icon-wrap { color: #0B1720; }

.service-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-features li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   MINI CTA
   ═══════════════════════════════════════ */
.mini-cta {
    padding: 0 0 4rem;
}

.mini-cta-soft {
    background: var(--bg-warm);
    padding: 4rem 0;
}

.mini-cta-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mini-cta-inner p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.mini-cta-inner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
}

[data-theme='dark'] .mini-cta-inner a { color: #0B1720; }

.mini-cta-inner a:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing {
    padding: 6rem 0;
    background: var(--bg);
}

.pricing-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.pricing-card-featured {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.15);
}

[data-theme='dark'] .pricing-card-featured {
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
}

.pricing-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.pricing-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.pricing-price {
    font-size: 1.9rem;
    line-height: 1;
    color: var(--text);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-features li {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 0.45rem;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   PORTFOLIO (Mockups)
   ═══════════════════════════════════════ */
.portfolio {
    padding: 6rem 0;
    background: var(--bg-warm);
}

.portfolio-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

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

.portfolio-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.portfolio-preview {
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.portfolio-preview-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s var(--ease);
}

.portfolio-card:hover .portfolio-preview-inner {
    transform: scale(1.04);
}

/* Window Mockup */
.mock-site {
    width: 85%;
    height: 82%;
    background: var(--bg-card);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
}

.mock-site-bar {
    height: 28px;
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}

.mock-dot { width: 7px; height: 7px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #ffbd2e; }
.mock-dot:nth-child(3) { background: #28c840; }

.mock-site-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-hero-block {
    height: 50px;
    border-radius: 6px;
    background: var(--accent);
}

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

.portfolio-info {
    padding: 1.5rem 2rem;
}

.portfolio-type {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.portfolio-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.3rem;
}

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

/* ═══════════════════════════════════════
   PROCESS TIMELINE
   ═══════════════════════════════════════ */
.process {
    padding: 6rem 0;
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 31px;
    width: 2px;
    height: 100%;
    background: var(--border);
}

.process-step {
    display: flex;
    gap: 2rem;
    padding-bottom: 2.5rem;
    position: relative;
}

.process-step:last-child { padding-bottom: 0; }

.process-step-dot {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--accent);
    z-index: 2;
    transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.process-step:hover .process-step-dot {
    border-color: var(--accent);
    background: var(--accent);
    color: white;
}
[data-theme='dark'] .process-step:hover .process-step-dot { color: #0B1720; }

.process-step-content {
    padding-top: 0.8rem;
}

.process-step-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.process-step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq {
    padding: 6rem 0;
    background: var(--bg-warm);
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.faq-item.active { border-color: var(--accent); }

.faq-question {
    padding: 1.3rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    gap: 1rem;
    transition: color 0.3s;
    user-select: none;
}

.faq-item.active .faq-question { color: var(--accent); }

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease), background 0.3s;
    color: var(--accent);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--accent);
    color: white;
}
[data-theme='dark'] .faq-item.active .faq-toggle { color: #0B1720; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* arbitrary max, should be larger than content */
}

.faq-answer-inner {
    padding: 0 1.5rem 1.3rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
    padding: 6rem 0;
    background: var(--bg);
}

.cta-card {
    background: var(--accent);
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}
[data-theme='dark'] .cta-card { color: #0B1720; }

.cta-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; }

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    color: var(--accent);
    padding: 1rem 2.2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}
[data-theme='dark'] .btn-white { background: #0B1720; color: var(--accent); }

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-white-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.45);
}

[data-theme='dark'] .btn-white-outline {
    color: #0B1720;
    border-color: rgba(20,20,20,0.35);
}

.btn-white-outline:hover {
    border-color: white;
    box-shadow: none;
}

.btn-white-soft {
    background: rgba(255,255,255,0.14);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

[data-theme='dark'] .btn-white-soft {
    background: rgba(20,20,20,0.2);
    color: #0B1720;
}

.cta-buttons-secondary {
    margin-top: 0.8rem;
}

.contact-alt-links {
    margin-top: 1.1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-alt-links a {
    color: white;
    font-size: 0.9rem;
    opacity: 0.95;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    transition: opacity 0.25s, border-color 0.25s;
}

[data-theme='dark'] .contact-alt-links a {
    color: #0B1720;
    border-color: rgba(20,20,20,0.35);
}

.contact-alt-links a:hover {
    opacity: 1;
    border-color: rgba(255,255,255,0.9);
}

.contact-response-note {
    font-size: 0.86rem;
    margin-top: 0.9rem;
    opacity: 0.9;
}

.contact-response-note a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    padding: 3rem 0 5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-warm);
    position: relative;
    z-index: 51;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

/* ═══════════════════════════════════════
   WAVE DIVIDERS
   ═══════════════════════════════════════ */
.wave-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 40px;
}

.wave-divider-hero {
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.wave-divider-hero svg {
    height: 60px;
}

.wave-divider-up svg,
.wave-divider-down svg {
    height: 36px;
}

/* ═══════════════════════════════════════
   GLOBAL TIDE OVERLAY (rising water)
   ═══════════════════════════════════════ */
.tide-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    z-index: 50;
    pointer-events: none;
    transition: none;
    overflow: hidden;
}

.tide-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 120px;
    min-height: 60px;
}

.tide-wave-back {
    animation: tideFloat 8s ease-in-out infinite;
}

.tide-wave-mid {
    animation: tideFloat 6s ease-in-out infinite reverse;
    animation-delay: -2s;
}

.tide-wave-front {
    animation: tideFloat 7s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes tideFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
}

/* Nav logo styling for tide Digital */
.nav-logo {
    white-space: nowrap;
}

.nav-logo span {
    color: var(--accent-secondary);
    font-family: var(--font);
    font-weight: 400;
    font-size: 0.72em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: 0.1em;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL (GSAP prep)
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero { padding: 7.5rem 0 4.5rem; }
    .hero-content { grid-template-columns: 1fr; gap: 2.2rem; }
    .hero-copy { max-width: 760px; margin: 0 auto; text-align: center; }
    .hero-kicker { text-align: center; }
    .hero-badge { justify-content: center; }
    .hero-description { margin: 0 auto 2rem; }
    .hero-cta-row { justify-content: center; }
    .hero-trust-row { justify-content: center; }
    .hero-visual { min-height: 340px; justify-content: center; }
    .hero-laptop {
        max-width: 540px;
        margin: 0 auto;
        transform: perspective(1100px) rotateY(-8deg) rotateX(5deg) rotate(-4deg);
    }
    .hero-phone { right: 10%; bottom: 0; }
    .hero-slash {
        width: 96%;
        right: -32%;
        bottom: -250px;
    }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6.5rem 0 3.2rem;
    }
    .hero-slash { display: none; }
    .hero::before {
        width: 420px;
        height: 420px;
        top: -180px;
        right: -180px;
    }
    .hero::after {
        width: 220px;
        height: 220px;
        left: -90px;
        bottom: 16%;
    }
    .hero-title { font-size: clamp(2.25rem, 10vw, 3rem); }
    .hero-description { font-size: 1rem; line-height: 1.65; }
    .hero-trust-item { font-size: 0.8rem; }
    .hero-visual {
        min-height: 260px;
        margin-top: 0.4rem;
    }
    .hero-laptop {
        width: 100%;
        max-width: 420px;
        transform: none;
    }
    .hero-phone {
        width: 96px;
        right: 0;
        bottom: -8px;
        transform: rotate(4deg);
    }
    .nav-links { display: none; }
    .nav-cta-btn { display: none; }
    .nav-hamburger { display: flex; }
    .problems-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .social-proof-inner { gap: 2rem; }
    .social-proof-divider { display: none; }
    .cta-card { padding: 3rem 1.5rem; }
    .cta-buttons { flex-direction: column; }
    .mini-cta-inner { flex-direction: column; align-items: flex-start; }
    .contact-alt-links { flex-wrap: wrap; }
    .footer-inner { flex-direction: column; text-align: center; }
    .wave-divider svg { height: 24px; }
    .wave-divider-hero svg { height: 36px; }
    .tide-wave { height: 80px; }
}
