/* ===================================
   CSS Variables & Reset
   =================================== */

:root {
    /* Colors - Case A: Deep Navy × Electric Blue */
    --color-primary: #0B1B3E;
    --color-secondary: #0F2756;
    --color-accent: #2F7EFF;
    --color-accent-light: #5B9CF5;
    --color-accent-cyan: #00C4FF;
    --color-accent-glow: rgba(47, 127, 255, 0.25);
    --color-bg-light: #F4F7FC;
    --color-bg-white: #ffffff;
    --color-bg-dark: #060E22;
    --color-bg-hero: #071228;
    --color-border: #E2E8F4;
    --color-text-primary: #0B1B3E;
    --color-text-secondary: #4A5C7A;
    --color-text-light: #8A9AB8;

    /* Typography */
    --font-primary: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.75;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 56px;
    --spacing-xxl: 80px;
    --spacing-xxxl: 120px;

    /* Container */
    --container-width: 1200px;
    --section-padding: 100px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(11, 27, 62, 0.06);
    --shadow-md: 0 4px 20px rgba(11, 27, 62, 0.10);
    --shadow-lg: 0 8px 40px rgba(11, 27, 62, 0.15);
    --shadow-glow: 0 0 32px rgba(47, 127, 255, 0.25);
}

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

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: var(--line-height-base);
    color: var(--color-text-primary);
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.8;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   Header
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 1000;
    padding: 20px 0;
    transition: padding var(--transition-base);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 20px rgba(11, 27, 62, 0.08);
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.header--scrolled {
    padding: 16px 0;
}

.header--scrolled::before {
    transform: translateY(0);
}

.header__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.header__logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: white;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header--scrolled .header__logo-text {
    color: var(--color-primary);
}

.header__logo-badge {
    font-size: 12px;
    padding: 4px 10px;
    background: white;
    color: var(--color-primary);
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, color 0.3s ease;
}

.header--scrolled .header__logo-badge {
    background: var(--color-primary);
    color: white;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.header__nav-item {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header--scrolled .header__nav-item {
    color: var(--color-text-secondary);
}

.header__nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-fast);
}

.header__nav-item:hover {
    color: white;
    opacity: 1;
}

.header--scrolled .header__nav-item:hover {
    color: var(--color-primary);
}

.header__nav-item:hover::after {
    width: 100%;
}

.header__nav-button {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    color: white;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px rgba(47, 127, 255, 0.3);
}

.header__nav-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(47, 127, 255, 0.45);
    opacity: 1;
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
    flex-shrink: 0;
    z-index: 1001;
}

.header__hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast), background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header--scrolled .header__hamburger-line {
    background-color: var(--color-primary);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===================================
   Main
   =================================== */

.main {
    padding-top: 0;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    background: linear-gradient(140deg, #071228 0%, #0B1B3E 55%, #0F2756 100%);
    padding: 172px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    @supports (min-height: 100dvh) {
        .hero {
            min-height: 100dvh;
        }
    }
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(11, 27, 62, 0.2) 0%, rgba(7, 18, 40, 0.3) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(47, 127, 255, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 196, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--spacing-xxl);
    row-gap: 0;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 8px 18px;
    background-color: rgba(47, 127, 255, 0.15);
    border: 1px solid rgba(47, 127, 255, 0.35);
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.hero__label-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-cyan));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
    font-size: 46px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: white;
    letter-spacing: -0.02em;
}

.hero__title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: var(--spacing-lg);
}

.hero__cta {
    margin-bottom: var(--spacing-md);
}

.hero__button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    color: white;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 700;
    transition: all var(--transition-base);
    box-shadow: 0 6px 24px rgba(47, 127, 255, 0.45);
    position: relative;
    overflow: hidden;
}

.hero__button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.hero__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(47, 127, 255, 0.6);
    opacity: 1;
}

.hero__button:hover::before {
    opacity: 1;
}

.hero__button-icon {
    font-size: 14px;
    transition: transform var(--transition-fast);
}

.hero__button:hover .hero__button-icon {
    transform: translateX(4px);
}

/* Platform badges */
.hero__platforms {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.hero__platform-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.hero__platform-badge {
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(47, 127, 255, 0.12);
    border: 1px solid rgba(47, 127, 255, 0.25);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* Hero Main Catch */
.hero__main-catch {
    font-size: clamp(44px, 7.5vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: var(--spacing-md);
}

.hero__char {
    display: inline-block;
    opacity: 0;
    white-space: pre;
    will-change: filter, transform, opacity;
}

.hero__char--revealed {
    animation: charReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__char--dot {
    color: var(--color-accent-cyan);
}

@keyframes charReveal {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.hero__main-catch--glowing {
    animation: catchGlowEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes catchGlowEnter {
    0% {
        filter: none;
    }
    40% {
        filter: drop-shadow(0 0 12px rgba(47, 127, 255, 0.62)) drop-shadow(0 0 28px rgba(47, 127, 255, 0.22)) brightness(1.02);
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(47, 127, 255, 0.55)) drop-shadow(0 0 26px rgba(47, 127, 255, 0.18));
    }
}

/* Hero CTA / Platforms initial hidden state */
.hero__cta,
.hero__platforms {
    opacity: 0;
}

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

.hero__cta--revealed,
.hero__platforms--revealed {
    animation: simpleFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Hero Subcopy */
.hero__subcopy {
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 600;
    line-height: 1.6;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, var(--color-accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.01em;
    opacity: 0;
}

.hero__description {
    opacity: 0;
}

@keyframes lineReveal {
    0% {
        opacity: 0;
        filter: blur(6px);
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.hero__subcopy--revealed {
    animation: lineReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__description--revealed {
    animation: lineReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Hero Visual */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    clip-path: inset(0 0 -80px 0);
    margin-left: calc(-1 * (var(--spacing-md) + max(0px, (100vw - var(--container-width)) / 2)));
}

.hero__visual-img {
    width: 130%;
    max-width: none;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

.hero__body {
}

.hero__visual-svg {
    display: none;
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 0 48px rgba(47, 127, 255, 0.18));
}

/* ===================================
   Section Common
   =================================== */

.section {
    padding: var(--section-padding) 0;
}

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

.section--problem h3.section__header--h3 {
    text-align: left;
}

.section--why {
    background-color: var(--color-bg-white);
}

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

.section__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

div.section__header--h3 {
    text-align: left;
    margin-bottom: var(--spacing-xxl);
}

h3.section__header--h3 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
    letter-spacing: -0.02em;
    text-align: center;
}

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

.section__label {
    display: none;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 6px 18px;
    background-color: rgba(47, 127, 255, 0.08);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(47, 127, 255, 0.15);
}

.section__label--center {
    margin: 0 auto var(--spacing-sm);
}

.section__label-icon {
    display: inline-flex;
    align-items: center;
}

/* SVG Icon utilities */
.icon-svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon-svg--warning {
    color: #E53E3E;
}

.misconception-card__icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.misconception-card__icon-wrap .icon-svg--main {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    opacity: 0.75;
}

.section__label-small {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    text-transform: uppercase;
}

.section__title {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.section__description {
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Section Heading (EN + JA) */
.section__heading--h2 {
    margin-bottom: var(--spacing-xl);
}

.section__en-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--color-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.section__ja-subtitle {
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.06em;
}

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

.section__divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-cyan));
    margin: var(--spacing-md) auto var(--spacing-lg);
    border-radius: 2px;
}

.section__divider--left {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-cyan));
    margin: var(--spacing-md) 0 var(--spacing-lg);
    border-radius: 2px;
}

/* ===================================
   Problem Items
   =================================== */

.problems {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxl);
}

.problem-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.problem-item--reverse .problem-item__content {
    order: 2;
}

.problem-item--reverse .problem-item__visual {
    order: 1;
}

.problem-item__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.problem-item__icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(47, 127, 255, 0.3);
}

.problem-item__icon svg {
    width: 26px;
    height: 26px;
    color: white;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.problem-item__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--color-primary);
    min-width: 0;
}

.problem-item__text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-text-secondary);
}

.problem-item__visual {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.problem-item__visual svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Comparison Table
   =================================== */

.comparison {
    margin: var(--spacing-xxl) 0;
    background-color: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
}

.comparison__header th {
    padding: var(--spacing-md);
    font-weight: 600;
    text-align: center;
}

.comparison__header th:first-child {
    background: var(--color-bg-light);
}

.comparison__column--seo {
    background: #F8FAFF;
}

.comparison__column--aieo {
    background: linear-gradient(135deg, var(--color-accent) 0%, #1A6AFF 100%);
    color: white;
}

.comparison__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 20px;
}

.comparison__icon {
    font-size: 24px;
}

.comparison__label {
    font-size: 16px;
    font-weight: 700;
}

.comparison__body tr {
    border-top: 1px solid var(--color-border);
}

.comparison__label-cell {
    padding: var(--spacing-md);
    font-weight: 600;
    background-color: var(--color-bg-light);
    font-size: 14px;
    color: var(--color-text-secondary);
}

.comparison__cell {
    padding: var(--spacing-md);
    text-align: left;
    font-size: 14px;
    line-height: 1.7;
}

.comparison__cell--aieo {
    background: rgba(47, 127, 255, 0.04);
    font-weight: 500;
    color: var(--color-primary);
}

.comparison__check {
    color: var(--color-accent);
    margin-right: var(--spacing-xs);
    display: inline-flex;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ===================================
   Misconceptions
   =================================== */

.misconceptions {
    margin-top: var(--spacing-xxxl);
}

.misconceptions__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.misconceptions__subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xxl);
}

.misconceptions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.misconception-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    margin-top: 32px;
}

.misconception-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(47, 127, 255, 0.3);
}

.misconception-card__number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 40px;
    font-weight: 700;
    color: rgba(11, 27, 62, 0.04);
    line-height: 1;
}

.misconception-card__icon {
    font-size: 36px;
    text-align: center;
    margin: var(--spacing-md) 0 var(--spacing-sm);
    line-height: 1;
}

.misconception-card__title {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.misconception-card__list {
    list-style: none;
}

.misconception-card__list li {
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    padding-left: 16px;
    position: relative;
    margin-bottom: var(--spacing-sm);
}

.misconception-card__list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* ===================================
   Section CTA
   =================================== */

.section__cta {
    margin-top: var(--spacing-xxxl);
    text-align: center;
    padding: var(--spacing-xxl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.section__cta-bg {
    position: absolute;
    width: 160%;
    height: 160%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    filter: blur(0.5px);
    pointer-events: none;
}

.section__cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(7, 18, 40, 0.88) 80%);
}

.section__cta-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: white;
    position: relative;
}

.section__cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section__cta-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-accent-cyan);
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.section__cta-arrows {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===================================
   E-E-A-T Grid
   =================================== */

.eeat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.eeat-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    overflow: hidden;
}

.eeat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-cyan));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.eeat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: rgba(47, 127, 255, 0.25);
}

.eeat-card:hover::before {
    opacity: 1;
}

.eeat-card__number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 40px;
    font-weight: 700;
    color: rgba(11, 27, 62, 0.04);
    line-height: 1;
}

.eeat-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, rgba(47, 127, 255, 0.1) 0%, rgba(0, 196, 255, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.eeat-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.eeat-card__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.eeat-card__text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* ===================================
   Ideal Client
   =================================== */

.section--ideal {
    background-color: var(--color-bg-white);
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.ideal-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.ideal-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.ideal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(47, 127, 255, 0.25);
    opacity: 1;
}

.ideal-card:hover::after {
    transform: scaleX(1);
}

.ideal-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(47, 127, 255, 0.3);
}

.ideal-card__icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ideal-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.ideal-card__text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* ===================================
   Before After
   =================================== */

.section--beforeafter {
    background: linear-gradient(135deg, #071228 0%, #0B1B3E 100%);
    position: relative;
    overflow: hidden;
}

.section--beforeafter .section__en-title {
    color: var(--color-bg-white);
}

.section--beforeafter div.section__header--h3 {
    display: none;
}

.section--beforeafter::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47, 127, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section--beforeafter .section__label-small {
    color: rgba(255,255,255,0.5);
}

.section--beforeafter .section__title {
    color: white;
}

.beforeafter {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.beforeafter__column {
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.beforeafter__column--after {
    background-color: rgba(47, 127, 255, 0.08);
    border-color: rgba(47, 127, 255, 0.2);
}

.beforeafter__header {
    margin-bottom: var(--spacing-lg);
}

.beforeafter__label {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.beforeafter__label--before {
    background-color: rgba(239, 68, 68, 0.15);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.beforeafter__label--after {
    background-color: rgba(47, 127, 255, 0.2);
    color: var(--color-accent-cyan);
    border: 1px solid rgba(47, 127, 255, 0.3);
}

.beforeafter__title {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.beforeafter__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.beforeafter__item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.beforeafter__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.beforeafter__item--negative .beforeafter__icon {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
    font-size: 12px;
    font-weight: 700;
}

.beforeafter__item--positive .beforeafter__icon {
    background: rgba(47, 127, 255, 0.2);
    color: var(--color-accent-cyan);
    font-size: 12px;
    font-weight: 700;
}

.beforeafter__text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
}

.beforeafter__arrow {
    font-size: 36px;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Why Now
   =================================== */

.section--whynow {
    background-color: var(--color-bg-white);
}

.whynow-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.whynow-stat {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background-color: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.whynow-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-cyan));
}

.whynow-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.whynow-stat__unit {
    font-size: 36px;
}

.whynow-stat__number {
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.whynow-stat__text {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    color: var(--color-primary);
}

.whynow-stat__source {
    font-size: 11px;
    color: var(--color-text-light);
}

.whynow-cta {
    text-align: center;
    padding: var(--spacing-xxl);
    background: linear-gradient(135deg, rgba(47, 127, 255, 0.06) 0%, rgba(0, 196, 255, 0.06) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(47, 127, 255, 0.15);
}

.whynow-cta__text {
    font-size: 18px;
    line-height: 1.85;
    color: var(--color-text-secondary);
}

.whynow-cta__text strong {
    color: var(--color-accent);
    font-weight: 700;
}

/* ===================================
   About LIDDELL
   =================================== */

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

.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.strength-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
}

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

.strength-card__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.strength-card__body {
    padding: var(--spacing-lg);
    position: relative;
}

.strength-card__number {
    font-size: 72px;
    font-weight: 700;
    color: rgba(11, 27, 62, 0.04);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.strength-card__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.strength-card__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(47, 127, 255, 0.3);
}

.strength-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.strength-card__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--color-primary);
    min-width: 0;
}

.strength-card__text {
    font-size: 14px;
    line-height: 1.85;
    color: var(--color-text-secondary);
}

/* ===================================
   Process
   =================================== */

.section--process {
    background-color: var(--color-bg-white);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent-cyan));
    opacity: 0.2;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding-bottom: var(--spacing-lg);
    position: relative;
}

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

.process-step__number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(47, 127, 255, 0.35);
    position: relative;
    z-index: 1;
}

.process-step__content {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    margin-top: 8px;
}

.process-step__content:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(47, 127, 255, 0.25);
}

.process-step__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.process-step__text {
    font-size: 14px;
    line-height: 1.85;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.process-step__duration {
    font-size: 12px;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ===================================
   Pricing
   =================================== */

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

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

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

.pricing-card--recommended {
    border: 2px solid var(--color-accent);
    box-shadow: 0 8px 40px rgba(47, 127, 255, 0.18);
}

.pricing-card__badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    color: white;
    padding: 6px 40px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(47, 127, 255, 0.4);
}

.pricing-card__header {
    padding: var(--spacing-xl);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(135deg, #F8FAFF 0%, #F4F7FC 100%);
}

.pricing-card--recommended .pricing-card__header {
    background: linear-gradient(135deg, rgba(47, 127, 255, 0.06) 0%, rgba(0, 196, 255, 0.06) 100%);
}

.pricing-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-card__currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
}

.pricing-card__amount {
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.pricing-card__tax {
    font-size: 13px;
    color: var(--color-text-light);
}

.pricing-card__text {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.pricing-card__body {
    padding: var(--spacing-xl);
    flex-grow: 1;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.pricing-card__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 14px;
    line-height: 1.7;
}

.pricing-card__icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-cyan));
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card__note {
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: var(--spacing-md);
}

.pricing-card__footer {
    padding: var(--spacing-xl);
    border-top: 1px solid var(--color-border);
}

.pricing-card__button {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: all var(--transition-fast);
    font-size: 15px;
}

.pricing-card__button--primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(47, 127, 255, 0.35);
}

.pricing-card__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(47, 127, 255, 0.5);
    opacity: 1;
}

.pricing-card__button--secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.pricing-card__button--secondary:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    opacity: 1;
}

/* ===================================
   Contact
   =================================== */

.section--contact {
    background-color: var(--color-bg-white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.section--contact .section__description {
    text-align: left;
    max-width: 600px;
}

.form__group {
    margin-bottom: var(--spacing-lg);
}

.form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.form__required {
    color: #EF4444;
    font-weight: 700;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 15px;
    background-color: var(--color-bg-light);
    transition: all var(--transition-fast);
    color: var(--color-text-primary);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(47, 127, 255, 0.1);
}

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

.form__submit {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.form__button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 700;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(47, 127, 255, 0.3);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.form__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(47, 127, 255, 0.45);
}

.form__button-icon {
    font-size: 14px;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: linear-gradient(135deg, #060E22 0%, #0B1B3E 100%);
    color: white;
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 127, 255, 0.4), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 127, 255, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.footer__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.footer__cta {
    text-align: center;
    margin-bottom: var(--spacing-xxxl);
}

.footer__title {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: white;
}

.footer__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer__step {
    background: rgba(47, 127, 255, 0.07);
    border: 1px solid rgba(47, 127, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: left;
}

.footer__step-label {
    font-size: 11px;
    color: var(--color-accent-cyan);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
}

.footer__step-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.footer__step-text {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.footer__button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-cyan) 100%);
    color: white;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 700;
    transition: all var(--transition-base);
    box-shadow: 0 6px 28px rgba(47, 127, 255, 0.45);
}

.footer__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(47, 127, 255, 0.6);
    opacity: 1;
}

.footer__button-icon {
    font-size: 14px;
    transition: transform var(--transition-fast);
}

.footer__button:hover .footer__button-icon {
    transform: translateX(4px);
}

.footer__info {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer__company-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
}

.footer__address {
    font-style: normal;
}

.footer__address p {
    margin-bottom: var(--spacing-xs);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__address a {
    color: rgba(255, 255, 255, 0.65);
}

.footer__address a:hover {
    color: var(--color-accent-cyan);
    opacity: 1;
}

.footer__bottom {
    text-align: right;
}

.footer__link {
    font-size: 13px;
    margin-bottom: var(--spacing-xs);
    display: inline-block;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-accent-cyan);
    opacity: 1;
}

.footer__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 72px;
    }

    .hero__container {
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
        row-gap: 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero__content {
        grid-column: 2;
        grid-row: 1;
    }


    .hero__main-catch {
        font-size: clamp(36px, 5.5vw, 52px);
    }

    .hero__subcopy {
        font-size: 18px;
    }

    .hero__visual {
        display: block;
        grid-column: 1;
        grid-row: 1;
        position: relative;
        height: 30vw;
        margin-left: 0;
        overflow: visible;
        clip-path: none;
    }

    .hero__visual-img {
        position: absolute;
        left: -15vw;
        top: 50%;
        transform: translateY(-50%);
        width: 55vw;
        height: auto;
        max-width: none;
    }

    .hero__title {
        font-size: 38px;
    }

    .problem-item,
    .problem-item--reverse {
        grid-template-columns: 1fr;
    }

    .problem-item--reverse .problem-item__content {
        order: 1;
    }

    .problem-item--reverse .problem-item__visual {
        order: 2;
    }

    .misconceptions__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eeat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ideal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .beforeafter {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .beforeafter__arrow {
        text-align: center;
        font-size: 28px;
        display: block;
        font-size: 0;
    }

    .beforeafter__arrow::before {
        content: '↓';
        font-size: 28px;
    }

    .whynow-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .footer__steps {
        grid-template-columns: 1fr;
    }

    .footer__info {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-lg);
    }

    .footer__bottom {
        text-align: left;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 56px;
        --font-size-base: 15px;
    }

    .hero__container {
        grid-template-columns: 30vw 1fr;
    }

    .hero__visual {
        height: 35vw;
    }

    .hero__visual-img {
        left: -32.5vw;
        width: 65vw;
        height: auto;
    }

    .header {
        padding: 14px 0;
    }

    .header__hamburger {
        display: flex;
    }

    .header__nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(11, 27, 62, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 1000;
    }

    .header__nav.is-open {
        display: flex;
    }

    .header__hamburger-line {
        background-color: var(--color-bg-white);
    }

    .header--scrolled .header__hamburger-line {
        background-color: var(--color-primary);
    }

    .header__nav-item {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.85);
    }

    .header__nav-item:hover {
        color: white;
    }

    .header__nav-button {
        font-size: 16px;
        padding: 14px 32px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero__content {
        display: contents;
    }

    .hero__copy {
        grid-column: 2;
        grid-row: 1;
    }

    .hero__body {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: center;
    }

    .hero__description {
        margin-bottom: var(--spacing-md);
    }

    .hero__cta {
        text-align: center;
    }

    .hero__button {
        justify-content: center;
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__button {
        white-space: normal;
        text-align: center;
        word-break: keep-all;
        padding: 16px 24px;
        font-size: 14px;
        max-width: 100%;
        display: flex;
    }

    .section__title {
        font-size: 26px;
    }

    .misconceptions__title {
        font-size: 22px;
    }

    .problem-item__title {
        font-size: 22px;
    }

    .misconceptions__grid {
        grid-template-columns: 1fr;
    }

    .misconception-card {
        margin-top: 36px;
    }

    .eeat-grid {
        grid-template-columns: 1fr;
    }

    .ideal-grid {
        grid-template-columns: 1fr;
    }

    .comparison {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison__table {
        font-size: 13px;
        min-width: 560px;
    }

    .whynow-content {
        grid-template-columns: 1fr;
    }

    .strength-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        display: none;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .footer__title {
        font-size: 24px;
    }

    .footer__steps {
        grid-template-columns: 1fr;
    }
}
