/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F5F5;
    --color-gray-medium: #8E8E93;
    --color-gray-dark: #1D1D1F;
    --color-orange: #CC6600;
    --bg-gradient: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f7f7f7 100%);
    --bg-gradient-alt: linear-gradient(180deg, #f5f5f5 0%, #fafafa 50%, #ffffff 100%);
    --card-glass: rgba(255, 255, 255, 0.88);
    --card-border: rgba(0, 0, 0, 0.07);
    --card-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-black);
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.7;
}

.logo-img {
    height: 26px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    display: none;
}

.logo-img[style*="display: none"] ~ .logo-text {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-black);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding-top: 90px;
    padding-bottom: 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
    overflow: hidden;
}

.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(204, 102, 0, 0.18) 0%, transparent 70%);
    top: -120px;
    right: -80px;
}

.hero-orb-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    bottom: 5%;
    left: -80px;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 75% 55% at 50% 40%, black 15%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 40%, black 15%, transparent 72%);
}

.hero-shape-ring {
    width: 280px;
    height: 280px;
    border: 1.5px solid rgba(204, 102, 0, 0.12);
    border-radius: 50%;
    top: 18%;
    right: -60px;
}

.hero-shape-wedge {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-bottom: 200px solid rgba(204, 102, 0, 0.06);
    top: 55%;
    left: -40px;
}

.hero-shape {
    position: absolute;
    pointer-events: none;
}

/* Hero floating cards */
.hero-visuals {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-float {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: heroFloatIn 1s ease-out 0.8s forwards;
}

.hero-float--site {
    left: 4%;
    top: 32%;
    animation: heroFloatIn 1s ease-out 0.8s forwards;
}

.hero-float--site .float-card {
    animation: heroFloatDriftLeft 6s ease-in-out 2s infinite;
}

.hero-float--app {
    right: 4%;
    top: 38%;
    animation: heroFloatIn 1s ease-out 1s forwards;
}

.hero-float--app .float-card {
    animation: heroFloatDriftRight 7s ease-in-out 2.5s infinite;
}

.float-card {
    width: 160px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-float--site .float-card {
    transform: rotate(-8deg);
}

.hero-float--app .float-card {
    transform: rotate(6deg);
}

@keyframes heroFloatDriftLeft {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(-10px); }
}

@keyframes heroFloatDriftRight {
    0%, 100% { transform: rotate(6deg) translateY(0); }
    50% { transform: rotate(6deg) translateY(-10px); }
}

.float-card--app {
    width: 175px;
}

.float-site-bar {
    height: 6px;
    width: 40%;
    background: var(--color-black);
    border-radius: 3px;
    margin-bottom: 12px;
    opacity: 0.15;
}

.float-site-block {
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    margin-bottom: 8px;
}

.float-site-block--lg {
    height: 36px;
    background: linear-gradient(135deg, rgba(204, 102, 0, 0.15) 0%, rgba(204, 102, 0, 0.05) 100%);
    border-radius: 6px;
    margin-bottom: 10px;
}

.float-site-block--sm {
    width: 60%;
}

.float-app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 14px;
    letter-spacing: -0.2px;
}

.float-app-dot {
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.float-app-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.float-app-icon {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.float-app-icon--active {
    background: rgba(204, 102, 0, 0.25);
}

.float-app-line {
    height: 6px;
    flex: 1;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
}

.float-app-line--short {
    width: 55%;
    flex: none;
}

.float-app-tag {
    display: inline-block;
    margin-top: 4px;
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 600;
    color: var(--color-orange);
    background: rgba(204, 102, 0, 0.1);
    border-radius: 20px;
}

.float-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-gray-medium);
    letter-spacing: 0.02em;
}

/* Hero bottom mockup */
.hero-mockup {
    position: absolute;
    bottom: -130px;
    left: 50%;
    width: min(780px, 88vw);
    z-index: 1;
    opacity: 0;
    animation: heroMockupIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.mockup-browser {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.08), 0 30px 80px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.mockup-chrome {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #f8f8f8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.mockup-dots span:first-child { background: #ff5f57; opacity: 0.8; }
.mockup-dots span:nth-child(2) { background: #febc2e; opacity: 0.8; }
.mockup-dots span:nth-child(3) { background: #28c840; opacity: 0.8; }

.mockup-url {
    flex: 1;
    padding: 6px 14px;
    background: var(--color-white);
    border-radius: 8px;
    font-size: 11px;
    color: var(--color-gray-medium);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.mockup-body {
    display: flex;
    min-height: 200px;
}

.mockup-sidebar {
    width: 52px;
    padding: 16px 10px;
    background: #fafafa;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-nav-item {
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.06);
}

.mockup-nav-item--active {
    background: rgba(204, 102, 0, 0.3);
    height: 24px;
}

.mockup-dashboard {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.mockup-stat {
    padding: 14px;
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.mockup-stat--accent {
    background: rgba(204, 102, 0, 0.06);
    border-color: rgba(204, 102, 0, 0.12);
}

.mockup-stat-val {
    display: block;
    height: 10px;
    width: 50%;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    margin-bottom: 8px;
}

.mockup-stat--accent .mockup-stat-val {
    background: rgba(204, 102, 0, 0.35);
}

.mockup-stat-lbl {
    display: block;
    height: 6px;
    width: 70%;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 80px;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.mockup-bar {
    flex: 1;
    height: var(--h);
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px 4px 0 0;
    min-height: 20%;
}

.mockup-bar--accent {
    background: rgba(204, 102, 0, 0.35);
}

.hero-content {
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-medium);
    letter-spacing: 0.01em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

.hero-title {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2.5px;
    margin-bottom: 22px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.title-line {
    display: block;
    line-height: 1.08;
    color: var(--color-black);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: fadeInUpScale 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.15s;
}

.title-highlight {
    color: var(--color-orange);
    background: rgba(204, 102, 0, 0.1);
    padding: 0.02em 0.18em;
    border-radius: 10px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 400;
    color: var(--color-gray-medium);
    margin-bottom: 24px;
    line-height: 1.65;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.45s forwards;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-pills {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.55s forwards;
}

.hero-pill {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-dark);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.65s forwards;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
    background-color: var(--color-gray-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-black);
    border-color: var(--color-black);
}

.btn-secondary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
    opacity: 0.4;
    transition: opacity 0.3s ease-out;
}

.scroll-indicator.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 1.5px solid var(--color-gray-medium);
    border-bottom: 1.5px solid var(--color-gray-medium);
    transform: rotate(45deg);
}

/* Shared section atmosphere */
.section--light,
.section--alt,
.vision,
.services,
.about,
.contact {
    position: relative;
    overflow: hidden;
}

.section--light {
    background: var(--bg-gradient);
}

.section--alt {
    background: var(--bg-gradient-alt);
}

.section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.section-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.022) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 20%, transparent 75%);
}

.section-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.section-orb--right {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 102, 0, 0.12) 0%, transparent 70%);
    top: 10%;
    right: -100px;
}

.section-orb--left {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(204, 102, 0, 0.1) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
}

.section-orb--center {
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(204, 102, 0, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-medium);
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

.section-eyebrow--left {
    text-align: left;
}

.section-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    line-height: 1.1;
}

.section-header .section-title::after {
    display: none;
}

.section-pills {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.section-pills--left {
    justify-content: flex-start;
    margin-top: 8px;
}

/* Vision Section */
.vision {
    padding: 120px 0;
}

.vision .section-header {
    margin-bottom: 48px;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.vision-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--card-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(204, 102, 0, 0.15);
}

.vision-card--highlight {
    border-color: rgba(204, 102, 0, 0.22);
    background: linear-gradient(165deg, rgba(204, 102, 0, 0.06) 0%, rgba(255, 255, 255, 0.92) 50%);
}

.vision-visual {
    position: relative;
    height: 100px;
    margin-bottom: 22px;
    padding: 12px;
    background: rgba(204, 102, 0, 0.04);
    border: 1px solid rgba(204, 102, 0, 0.08);
    border-radius: 14px;
    overflow: visible;
}

.vision-visual--web {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.vv-browser {
    width: 75%;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.vision-card:hover .vv-browser {
    transform: rotate(0deg) translateY(-2px);
}

.vv-chrome {
    display: flex;
    gap: 3px;
    padding: 5px 7px;
    background: #f4f4f5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px 8px 0 0;
}

.vv-chrome span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
}

.vv-chrome span:nth-child(1) { background: #ff5f57; }
.vv-chrome span:nth-child(2) { background: #febc2e; }
.vv-chrome span:nth-child(3) { background: #28c840; }

.vv-screen { padding: 8px; }

.vv-hero {
    height: 22px;
    background: linear-gradient(135deg, rgba(204, 102, 0, 0.35), rgba(204, 102, 0, 0.08));
    border-radius: 4px;
    margin-bottom: 6px;
}

.vv-lines span {
    display: block;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    margin-bottom: 4px;
}

.vv-lines span:last-child { width: 60%; margin-bottom: 0; }

.vv-badge {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 9px;
    font-weight: 700;
    color: var(--color-orange);
    background: var(--color-white);
    border: 1px solid rgba(204, 102, 0, 0.15);
    padding: 4px 8px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transform: rotate(4deg);
}

.vv-badge--app {
    color: var(--color-black);
    border-color: rgba(0, 0, 0, 0.08);
}

.vision-visual--app {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vv-app {
    width: 85%;
    padding: 10px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.vv-app-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.vv-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.vv-dot--on { background: var(--color-orange); opacity: 0.7; }

.vv-line {
    flex: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 2px;
}

.vv-line--short { max-width: 55%; }

.vv-calc {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    margin-top: 6px;
}

.vv-calc span {
    flex: 1;
    height: 18px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
}

.vv-calc--accent {
    height: 28px;
    background: rgba(204, 102, 0, 0.25);
}

.vision-roi {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    margin-bottom: 22px;
    background: rgba(204, 102, 0, 0.08);
    border: 1px solid rgba(204, 102, 0, 0.15);
    border-radius: 14px;
}

.vision-roi-value {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--color-orange);
    line-height: 1;
}

.vision-roi-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-medium);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vision-card-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--color-black);
    margin-bottom: 10px;
}

.vision-card-desc {
    font-size: 14px;
    color: var(--color-gray-medium);
    line-height: 1.65;
    flex: 1;
}

.vision-closing {
    max-width: 720px;
    margin: 0 auto;
    padding: 28px 36px;
    text-align: center;
    background: var(--card-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
}

.vision-closing p {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 500;
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.vision-closing strong {
    color: var(--color-orange);
    font-weight: 700;
}

/* Services Section */
.services {
    padding: 120px 0;
}

.services .section-header {
    margin-bottom: 52px;
}

.services .section-pills {
    margin-top: 20px;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-gray-medium);
    font-weight: 400;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: var(--card-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(204, 102, 0, 0.15);
}

.pricing-card--featured {
    border-color: rgba(204, 102, 0, 0.18);
}

/* Pricing card visuals — fun mini-scenes */
.pricing-visual {
    position: relative;
    height: 100px;
    margin-bottom: 22px;
    padding: 10px;
    overflow: visible;
    background: rgba(204, 102, 0, 0.04);
    border: 1px solid rgba(204, 102, 0, 0.08);
    border-radius: 14px;
}

/* ── Offre 1 : navigateur + téléphone ── */
.pricing-visual--site {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 4px 8px 0;
}

.pv-browser {
    width: 72%;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transform: rotate(-4deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.pricing-card:hover .pv-browser {
    transform: rotate(-1deg) translateY(-3px);
}

.pv-chrome {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    background: #f4f4f5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px 10px 0 0;
}

.pv-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pv-dot--red { background: #ff5f57; }
.pv-dot--yellow { background: #febc2e; }
.pv-dot--green { background: #28c840; }

.pv-url {
    flex: 1;
    height: 5px;
    margin-left: 4px;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 3px;
}

.pv-screen {
    padding: 8px;
}

.pv-hero-band {
    height: 18px;
    background: linear-gradient(135deg, rgba(204, 102, 0, 0.35) 0%, rgba(204, 102, 0, 0.1) 100%);
    border-radius: 4px;
    margin-bottom: 6px;
}

.pv-cta-stub {
    width: 28%;
    height: 6px;
    background: var(--color-black);
    border-radius: 6px;
    opacity: 0.18;
    margin-bottom: 6px;
}

.pv-text-line {
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    margin-bottom: 4px;
}

.pv-text-line--short { width: 62%; }

.pv-device--phone {
    position: absolute;
    right: 6%;
    bottom: 2px;
    width: 22%;
    min-width: 38px;
    background: var(--color-black);
    border-radius: 8px;
    padding: 3px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    transform: rotate(8deg);
    animation: pvPhoneFloat 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes pvPhoneFloat {
    0%, 100% { transform: rotate(8deg) translateY(0); }
    50% { transform: rotate(8deg) translateY(-5px); }
}

.pv-device-notch {
    width: 14px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 2px auto 4px;
}

.pv-device-screen {
    background: #fafafa;
    border-radius: 5px;
    padding: 5px;
    min-height: 36px;
}

.pv-mini-block {
    height: 10px;
    background: linear-gradient(135deg, rgba(204, 102, 0, 0.3), rgba(204, 102, 0, 0.08));
    border-radius: 3px;
    margin-bottom: 4px;
}

.pv-mini-line {
    height: 3px;
    width: 70%;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
}

/* ── Offre 2 : cockpit dashboard ── */
.pricing-visual--app {
    padding: 6px 4px 0;
}

.pv-dashboard {
    display: flex;
    height: 100%;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transform: rotate(1deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover .pv-dashboard {
    transform: rotate(0deg) translateY(-3px);
}

.pv-sidebar {
    width: 22%;
    background: #f6f6f7;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pv-nav-item {
    display: block;
    height: 5px;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 3px;
}

.pv-nav-item--active {
    background: rgba(204, 102, 0, 0.35);
    box-shadow: 0 0 0 1px rgba(204, 102, 0, 0.15);
}

.pv-nav-item--short { width: 65%; }

.pv-panel {
    flex: 1;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pv-kpis {
    display: flex;
    gap: 5px;
}

.pv-kpi {
    flex: 1;
    height: 14px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.pv-kpi--accent {
    background: rgba(204, 102, 0, 0.18);
}

.pv-bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding-bottom: 2px;
}

.pv-bar {
    flex: 1;
    height: var(--h, 50%);
    background: rgba(0, 0, 0, 0.07);
    border-radius: 3px 3px 0 0;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pv-bar--accent {
    background: linear-gradient(180deg, rgba(204, 102, 0, 0.55) 0%, rgba(204, 102, 0, 0.2) 100%);
}

.pricing-card:hover .pv-bar { filter: brightness(1.05); }
.pricing-card:hover .pv-bar:nth-child(1) { height: calc(var(--h, 50%) + 6%); }
.pricing-card:hover .pv-bar:nth-child(3) { height: calc(var(--h, 50%) + 10%); }
.pricing-card:hover .pv-bar:nth-child(4) { height: calc(var(--h, 50%) + 4%); }

.pv-chip {
    position: absolute;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.02em;
}

.pv-chip--cloud {
    top: -2px;
    left: 8px;
    color: #4a90d9;
    transform: rotate(-6deg);
    animation: pvChipDrift 5s ease-in-out infinite;
}

.pv-chip--live {
    bottom: 4px;
    right: 10px;
    color: var(--color-orange);
    background: rgba(204, 102, 0, 0.08);
    border-color: rgba(204, 102, 0, 0.15);
    transform: rotate(5deg);
    animation: pvChipDrift 4s ease-in-out 0.5s infinite reverse;
}

@keyframes pvChipDrift {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50% { transform: rotate(-6deg) translateY(-4px); }
}

.pv-chip--live {
    animation-name: pvChipDriftRight;
}

@keyframes pvChipDriftRight {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-4px); }
}

.pricing-card-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-black);
    margin-bottom: 8px;
}

.pricing-card-hook {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-dark);
    line-height: 1.5;
    margin-bottom: 16px;
}

.pricing-perks {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.pricing-perks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-gray-medium);
    line-height: 1.5;
    margin-bottom: 10px;
}

.pricing-perks li:last-child {
    margin-bottom: 0;
}

.pricing-perks li::before {
    content: '✓';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-orange);
    background: rgba(204, 102, 0, 0.1);
    border-radius: 50%;
    margin-top: 1px;
}

.pricing-card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card-pricebox {
    padding-top: 0;
}

.pricing-from {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-medium);
    margin-bottom: 6px;
}

.pricing-highlight {
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--color-orange);
    background: rgba(204, 102, 0, 0.1);
    padding: 0.08em 0.24em;
    border-radius: 10px;
    line-height: 1.2;
}

.pricing-highlight--sm {
    font-size: 26px;
}

.pricing-highlight .pricing-unit {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-medium);
}

.pricing-unit {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-medium);
}

.pricing-card-pricebox--dual {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-price-row {
    display: flex;
    flex-direction: column;
}

.pricing-or {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-or::before,
.pricing-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
}

.pricing-note {
    font-size: 12px;
    color: var(--color-gray-medium);
    margin-top: 4px;
}

.pricing-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 18px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--color-black);
    border-radius: 50px;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.pricing-card-cta:link,
.pricing-card-cta:visited {
    color: var(--color-white);
    text-decoration: none;
}

.pricing-card-cta span {
    transition: transform 0.25s ease;
}

.pricing-card-cta:hover {
    background-color: var(--color-gray-dark);
    color: var(--color-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
    gap: 10px;
}

.pricing-card-cta:hover span {
    transform: translateX(3px);
}

.pricing-card-cta--featured {
    background-color: var(--color-orange);
    box-shadow: 0 4px 16px rgba(204, 102, 0, 0.25);
}

.pricing-card-cta--featured:hover {
    background-color: #b35c00;
    color: var(--color-white);
    box-shadow: 0 6px 22px rgba(204, 102, 0, 0.3);
}

.services-footer {
    margin-top: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.services-footer-hook {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    letter-spacing: -0.4px;
    color: var(--color-black);
    margin-bottom: 16px;
}

.services-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.services-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 24px 20px;
    text-decoration: none;
    transition: var(--transition);
    min-height: 96px;
}

.services-action-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
}

.services-action-value {
    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.services-action--call {
    background: linear-gradient(145deg, #d9720f 0%, var(--color-orange) 50%, #b35c00 100%);
    color: var(--color-white);
}

.services-action--call:hover {
    filter: brightness(1.06);
    color: var(--color-white);
}

.services-action--write {
    background: var(--color-black);
    color: var(--color-white);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.services-action--write:hover {
    background: var(--color-gray-dark);
    color: var(--color-white);
}

.services-action--write .services-action-value {
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 600;
}

/* About Section — editorial layout */
.about {
    padding: 120px 0;
}

.about-stage {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-intro {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-headline {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--color-black);
}

.about-lead {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--color-gray-medium);
    line-height: 1.65;
    max-width: 560px;
}

.about-signals {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-signal {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 18px 22px;
    background: var(--card-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.about-signal:hover {
    transform: translateX(6px);
    border-color: rgba(204, 102, 0, 0.18);
    box-shadow: var(--card-shadow-hover);
}

.about-signal--accent {
    background: linear-gradient(135deg, rgba(204, 102, 0, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-color: rgba(204, 102, 0, 0.2);
}

.about-signal-num {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--color-orange);
    line-height: 1;
    min-width: 72px;
}

.about-signal-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-dark);
    letter-spacing: -0.2px;
}

.about-flow {
    margin-bottom: 40px;
}

.about-timeline {
    position: relative;
    margin-bottom: 40px;
    padding-top: 8px;
}

.about-timeline-track {
    position: absolute;
    top: 14px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(204, 102, 0, 0.08) 0%, var(--color-orange) 50%, rgba(204, 102, 0, 0.08) 100%);
    border-radius: 2px;
}

.about-timeline-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.about-timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.about-timeline-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-orange);
    box-shadow: 0 0 0 4px rgba(204, 102, 0, 0.15);
    flex-shrink: 0;
}

.about-timeline-name {
    display: block;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--color-black);
}

.about-timeline-hint {
    display: block;
    font-size: 13px;
    color: var(--color-gray-medium);
    line-height: 1.4;
}

.about-infra-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-dark);
    margin: 8px 0 20px;
}

.flag-fr {
    display: inline-block;
    width: 20px;
    height: 13px;
    border-radius: 2px;
    background: linear-gradient(90deg, #002395 33.33%, #ffffff 33.33%, #ffffff 66.66%, #ed2939 66.66%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    vertical-align: -2px;
}

.hero-pill--fr {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-pill--fr .flag-fr {
    width: 16px;
    height: 11px;
}

.about-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.about-cta-row {
    text-align: center;
    margin-top: 8px;
}

.about-cta-row .btn {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
    padding: 18px 44px;
}

.section-pills--left {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 120px 0;
}

.contact-wrap {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-channels {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 32px;
    font-size: 15px;
}

.contact-channel {
    color: var(--color-gray-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-channel:hover {
    color: var(--color-orange);
}

.contact-channel-sep {
    color: rgba(0, 0, 0, 0.2);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    transition: var(--transition);
    color: var(--color-black);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--color-gray-medium);
}

.form-field select {
    cursor: pointer;
    appearance: none;
    color: var(--color-gray-medium);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238E8E93' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

.form-field select:valid {
    color: var(--color-black);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-bottom-color: var(--color-black);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-honey {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-feedback {
    padding: 12px 0;
    font-size: 14px;
    line-height: 1.5;
}

.form-feedback--success {
    color: #1a6b1a;
}

.form-feedback--error {
    color: #8b0000;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
    padding-top: 8px;
}

.form-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-gray-medium);
    cursor: pointer;
    line-height: 1.4;
}

.form-consent input {
    flex-shrink: 0;
    accent-color: var(--color-orange);
}

.form-consent a {
    color: var(--color-gray-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-consent a:hover {
    color: var(--color-orange);
}

.contact-form .btn-submit {
    flex-shrink: 0;
    padding: 14px 28px;
    font-size: 15px;
}

.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    padding: 72px 0 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--color-white);
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-black);
    width: fit-content;
}

.footer-logo:hover {
    opacity: 0.75;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 600;
    display: none;
}

.footer-logo-img[style*="display: none"] ~ .footer-logo-text {
    display: block;
}

.footer-tagline {
    font-size: 15px;
    color: var(--color-gray-dark);
    line-height: 1.55;
    max-width: 280px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.footer-contact-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--color-orange);
}

.footer-meta {
    font-size: 13px;
    color: var(--color-gray-medium);
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-link {
    color: var(--color-gray-medium);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.footer-text {
    font-size: 14px;
    color: var(--color-gray-medium);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal .footer-link {
    font-size: 14px;
}

.footer-legal-sep {
    color: rgba(0, 0, 0, 0.15);
}

.footer-bottom--compact {
    border-top: none;
    padding-top: 0;
}

/* Legal pages */
.legal-page {
    padding: 140px 0 80px;
    min-height: 60vh;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: var(--color-gray-medium);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 12px;
    letter-spacing: -0.3px;
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-orange);
    text-decoration: none;
    margin-bottom: 32px;
    transition: var(--transition);
}

.legal-back:hover {
    color: var(--color-black);
}

.legal-content a {
    color: var(--color-orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--color-black);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes heroMockupIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-visuals {
        display: none;
    }

    .hero-shape-ring,
    .hero-shape-wedge {
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-content {
        justify-content: center;
        padding: 14px 0;
    }

    .logo {
        margin: 0 auto;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        min-height: 100svh;
        padding-top: 80px;
        padding-bottom: 0;
    }

    .hero-main {
        padding-bottom: 180px;
    }

    .hero-mockup {
        bottom: -60px;
        width: calc(100vw - 32px);
    }

    .mockup-body {
        min-height: 140px;
    }

    .mockup-sidebar {
        width: 40px;
        padding: 12px 8px;
    }

    .mockup-dashboard {
        padding: 14px;
        gap: 14px;
    }

    .mockup-stats {
        gap: 6px;
    }

    .mockup-stat {
        padding: 8px;
    }

    .mockup-chart {
        height: 50px;
        gap: 6px;
        padding: 8px;
    }

    .mockup-url {
        font-size: 10px;
        padding: 5px 10px;
    }

    .scroll-indicator {
        bottom: 16px;
    }

    .hero-orb-1 {
        width: 240px;
        height: 240px;
        top: -40px;
        right: -80px;
    }

    .hero-orb-2 {
        width: 180px;
        height: 180px;
    }

    .hero-shape-ring,
    .hero-shape-wedge {
        display: none;
    }

    .hero-eyebrow {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .hero-title {
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-pills {
        gap: 8px;
        margin-bottom: 24px;
    }

    .hero-pill {
        font-size: 11px;
        padding: 7px 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 15px 32px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-eyebrow {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 36px);
        letter-spacing: -1.5px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .vision,
    .services,
    .about,
    .contact {
        padding: 72px 0;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vision-closing {
        padding: 24px 20px;
    }

    .services {
        padding: 64px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }

    .pricing-card {
        padding: 24px;
    }

    .pricing-highlight {
        font-size: 24px;
    }

    .pricing-highlight--sm {
        font-size: 22px;
    }

    .section-pills {
        gap: 8px;
        margin-top: 20px;
    }

    .services-footer {
        margin-top: 32px;
        max-width: 100%;
        padding: 0 4px;
    }

    .services-actions {
        grid-template-columns: 1fr;
    }

    .services-action--write {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .services-action {
        padding: 20px 16px;
        min-height: 80px;
    }

    .services-action-value {
        font-size: 20px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 36px;
        padding-bottom: 36px;
    }

    .about-intro-copy {
        text-align: center;
    }

    .about-intro-copy .section-eyebrow--left {
        text-align: center;
    }

    .about-lead {
        max-width: none;
        margin: 0 auto;
    }

    .about-signal:hover {
        transform: none;
    }

    .about-timeline-track {
        display: none;
    }

    .about-timeline-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-timeline-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .about-timeline-dot {
        margin-top: 0;
    }

    .about-timeline-text {
        align-items: center;
    }

    .about-infra-note {
        justify-content: center;
        text-align: center;
        font-size: 14px;
    }

    .about-cta-row .btn {
        width: 100%;
    }

    .section-pills--left {
        justify-content: center;
    }

    .section-orb {
        opacity: 0.6;
    }

    .contact-wrap {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .contact-form .btn-submit {
        width: 100%;
        text-align: center;
    }

    .footer {
        padding: 40px 0 24px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 16px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-tagline {
        max-width: none;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-meta {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 0;
        border-top: none;
        gap: 12px;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .title-highlight {
        border-radius: 6px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-main {
        padding-bottom: 160px;
    }

    .hero-mockup {
        bottom: -40px;
        width: calc(100vw - 24px);
    }

    .mockup-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .mockup-bar:nth-child(n+5) {
        display: none;
    }

    .mockup-chart {
        height: 44px;
    }

    .section-title {
        font-size: 26px;
    }

    .pricing-card-hook,
    .pricing-perks li {
        font-size: 15px;
    }

    .pricing-highlight {
        font-size: 22px;
    }

    .pricing-highlight--sm {
        font-size: 20px;
    }

}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }
}

@media (hover: none) {
    .pricing-card:hover,
    .vision-card:hover,
    .about-signal:hover,
    .pricing-card-cta:hover {
        transform: none;
    }
}
