/* ==========================================================================
   TORITOSYSTEM — Landing Page
   Scoped to body.landing so other pages (portfolio/story) keep their styles.
   Design: editorial, typography-driven, monochrome + single accent.
   ========================================================================== */

/* ---------- Design Tokens ---------- */
.landing {
    --fg:        #0A0A0A;
    --fg-2:      #404040;
    --fg-3:      #737373;
    --fg-4:      #A3A3A3;
    --bg:        #FFFFFF;
    --bg-alt:    #FAFAF9;
    --bg-dark:   #0A0A0A;
    --line:      #E5E5E5;
    --line-2:    #F0F0EE;
    --accent:    #E11D48;
    --accent-2:  #0A0A0A;

    --f-display: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Noto Sans KR', sans-serif;
    --f-body:    'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Noto Sans KR', sans-serif;
    --f-mono:    'SF Mono', ui-monospace, 'Menlo', monospace;
}

/* ---------- Reset & Base ---------- */
body.landing {
    font-family: var(--f-body);
    color: var(--fg);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.55;
    letter-spacing: -0.005em;
}

body.landing .container {
    max-width: 1160px;
    padding: 0 32px;
}

body.landing .section {
    padding: 140px 0;
}

body.landing .bg-light {
    background: var(--bg-alt);
}

/* ---------- Header (override purple gradient) ---------- */
body.landing header {
    background: var(--bg);
    color: var(--fg);
    padding-bottom: 0;
    overflow: visible;
    border-bottom: 1px solid var(--line);
}

body.landing header::before {
    display: none;
}

body.landing nav {
    padding: 22px 0;
    border-bottom: 1px solid var(--line-2);
}

body.landing nav .container {
    padding: 0 32px;
}

body.landing .logo a {
    font-family: var(--f-display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--fg);
}

body.landing .nav-menu li {
    margin-left: 36px;
}

body.landing .nav-menu a {
    color: var(--fg-2);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    transition: color 0.15s ease;
}

body.landing .nav-menu a:hover {
    color: var(--fg);
}

body.landing .nav-menu .btn-contact {
    background: var(--fg);
    color: var(--bg);
    padding: 9px 18px;
    border-radius: 6px;
    font-weight: 600;
}

body.landing .nav-menu .btn-contact:hover {
    background: var(--accent);
    color: var(--bg);
}

body.landing .menu-toggle {
    color: var(--fg);
}

/* ---------- Hero ---------- */
body.landing .hero {
    padding: 140px 0 160px;
}

body.landing .hero .container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
}

body.landing .hero-content {
    max-width: 980px;
}

body.landing .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-3);
    padding: 0;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    background: none;
}

body.landing .hero-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--fg-3);
}

body.landing .hero-content h1 {
    font-family: var(--f-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--fg);
    margin-bottom: 36px;
}

body.landing .hero-content h1 br {
    display: block;
}

body.landing .hero-content h1 .hero-accent {
    color: var(--accent);
    font-style: normal;
    position: relative;
    display: inline-block;
    -webkit-text-fill-color: var(--accent);
    background: none;
    padding: 0 0.05em;
}

body.landing .hero-content h1 .hero-accent::before {
    display: none;
}

body.landing .hero-content p.hero-sub {
    font-family: var(--f-body);
    font-size: 1.22rem;
    line-height: 1.65;
    color: var(--fg-2);
    margin: 0;
    max-width: 640px;
    font-weight: 400;
    letter-spacing: -0.005em;
    opacity: 1;
}

body.landing .hero-content p.hero-sub strong {
    color: var(--fg);
    font-weight: 700;
    background: linear-gradient(180deg, transparent 62%, rgba(225, 29, 72, 0.18) 62%);
    padding: 0 2px;
}

body.landing .hero-cta-wrap {
    margin-top: 56px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

body.landing .hero-cta-wrap .btn-primary,
body.landing .hero-cta-wrap .btn-lg {
    background: var(--fg);
    color: var(--bg);
    padding: 18px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    box-shadow: none;
    transition: background 0.18s ease, transform 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body.landing .hero-cta-wrap .btn-primary::after {
    content: "→";
    font-size: 1rem;
    transition: transform 0.2s ease;
}

body.landing .hero-cta-wrap .btn-primary:hover {
    background: var(--accent);
    transform: none;
    box-shadow: none;
}

body.landing .hero-cta-wrap .btn-primary:hover::after {
    transform: translateX(4px);
}

body.landing .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 18px 24px;
    color: var(--fg);
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: color 0.15s ease;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--line);
}

body.landing .btn-ghost:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
    background: transparent;
}

body.landing .hero-content p.hero-cta-sub {
    flex-basis: 100%;
    margin: 20px 0 0 0;
    font-size: 0.86rem;
    color: var(--fg-3);
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 1;
}

/* hide previous hero card visual — too decorative for new design */
body.landing .hero-visual,
body.landing .hero-image {
    display: none !important;
}

/* ---------- Trust Bar (minimal stats strip) ---------- */
body.landing .trust-bar {
    background: var(--bg);
    color: var(--fg);
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

body.landing .trust-bar .container {
    padding: 0;
    max-width: 1160px;
}

body.landing .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0 32px;
}

body.landing .trust-item {
    padding: 52px 36px;
    border-left: 1px solid var(--line-2);
    border-right: none;
    text-align: left;
}

body.landing .trust-item:first-child {
    border-left: none;
    padding-left: 0;
}

body.landing .trust-item:last-child {
    padding-right: 0;
}

body.landing .trust-num {
    font-family: var(--f-display);
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--fg);
    line-height: 1;
    letter-spacing: -0.045em;
    margin-bottom: 20px;
}

body.landing .trust-unit {
    display: inline;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--fg-3);
    margin-left: 2px;
    letter-spacing: -0.02em;
}

body.landing .trust-label {
    font-size: 0.88rem;
    color: var(--fg-2);
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.005em;
}

/* ---------- Shared: Eyebrow label ---------- */
body.landing .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
}

body.landing .eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--accent);
}

/* ---------- Section Header (left-aligned, editorial) ---------- */
body.landing .section-header {
    text-align: left;
    max-width: 720px;
    margin: 0 0 80px 0;
}

body.landing .section-header h2 {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 800;
    color: var(--fg);
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 20px;
}

body.landing .section-header p {
    font-size: 1.1rem;
    color: var(--fg-2);
    line-height: 1.65;
    margin: 0;
    max-width: 640px;
    font-weight: 400;
}

body.landing .section-header strong {
    color: var(--fg);
    font-weight: 700;
}

/* ---------- #why section ---------- */
body.landing #why {
    padding: 160px 0 !important;
    background: var(--bg);
}

body.landing .why-wrap {
    max-width: 1080px;
    margin: 0 auto;
}

body.landing .why-intro {
    max-width: 820px;
    margin: 0 0 100px 0;
}

body.landing .why-intro h2 {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--fg);
    margin-bottom: 32px;
}

body.landing .why-intro h2 em {
    font-style: normal;
    color: var(--accent);
    display: inline;
}

body.landing .why-intro h2 em::after {
    display: none;
}

body.landing .why-lead {
    font-size: 1.15rem;
    line-height: 1.78;
    color: var(--fg-2);
    max-width: 720px;
    margin: 0;
    font-weight: 400;
}

body.landing .why-lead strong {
    color: var(--fg);
    font-weight: 700;
}

body.landing .why-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 120px 0;
    border-top: 1px solid var(--line);
}

body.landing .why-steps li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 48px;
    padding: 44px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

body.landing .why-step-num {
    font-family: var(--f-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--fg-3);
    padding-top: 10px;
}

body.landing .why-step-body h3 {
    font-family: var(--f-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 14px;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

body.landing .why-step-body p {
    font-size: 1.05rem;
    line-height: 1.72;
    color: var(--fg-2);
    margin: 0;
    max-width: 640px;
    font-weight: 400;
}

body.landing .why-quote {
    background: transparent;
    border-left: 2px solid var(--fg);
    padding: 20px 0 20px 36px;
    border-radius: 0;
    max-width: 820px;
}

body.landing .why-quote p {
    font-family: var(--f-display);
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--fg);
    font-style: normal;
    margin: 0 0 20px 0;
    letter-spacing: -0.025em;
    font-weight: 500;
}

body.landing .why-quote p em {
    font-style: italic;
    color: var(--fg);
    font-weight: 600;
    background: linear-gradient(180deg, transparent 60%, rgba(225, 29, 72, 0.15) 60%);
    padding: 0 2px;
}

body.landing .why-quote footer {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    color: var(--fg-3);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ---------- #pricing section ---------- */
body.landing #pricing {
    padding: 160px 0 !important;
    background: var(--bg-alt);
}

body.landing #pricing .section-header {
    max-width: 820px;
    margin: 0 0 80px 0;
}

body.landing #pricing .section-header h2 {
    font-size: clamp(2rem, 4.2vw, 3rem);
}

body.landing .pricing-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin: 0 0 100px 0;
    max-width: none;
    border: 1px solid var(--line);
    background: var(--bg);
}

body.landing .pricing-card {
    background: transparent;
    border-radius: 0;
    padding: 48px 48px 40px;
    box-shadow: none;
    border: none;
    position: relative;
}

body.landing .pricing-before {
    border-right: 1px solid var(--line);
    border-top: none;
    opacity: 1;
    background: transparent;
}

body.landing .pricing-after {
    border: none;
    border-top: none;
    background: var(--fg);
    color: var(--bg);
    transform: none;
    box-shadow: none;
}

body.landing .pricing-label {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--fg-3);
}

body.landing .pricing-after .pricing-label {
    color: rgba(255, 255, 255, 0.55);
}

body.landing .pricing-num {
    font-family: var(--f-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--fg);
    margin-bottom: 40px;
    letter-spacing: -0.045em;
    line-height: 1;
}

body.landing .pricing-after .pricing-num {
    color: var(--bg);
}

body.landing .pricing-num span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-3);
    margin-left: 4px;
    letter-spacing: -0.01em;
}

body.landing .pricing-after .pricing-num span {
    color: rgba(255, 255, 255, 0.55);
}

body.landing .pricing-before .pricing-num {
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--fg-3);
    color: var(--fg-3);
}

body.landing .pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.landing .pricing-list li {
    padding: 16px 0 16px 28px;
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--fg-2);
    position: relative;
    border-bottom: 1px solid var(--line-2);
}

body.landing .pricing-after .pricing-list li {
    color: rgba(255, 255, 255, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.landing .pricing-list li:last-child {
    border-bottom: none;
}

body.landing .pricing-before .pricing-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 16px;
    color: var(--fg-3);
    font-weight: 500;
}

body.landing .pricing-after .pricing-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--bg);
    font-weight: 700;
    font-size: 1rem;
}

body.landing .pricing-after .pricing-list li strong {
    color: var(--bg);
    font-weight: 700;
}

body.landing .pricing-arrow {
    display: none;
}

body.landing .pricing-range h3 {
    font-family: var(--f-display);
    text-align: left;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--fg);
    margin: 0 0 40px 0;
    letter-spacing: -0.03em;
    max-width: none;
}

body.landing .pricing-range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 0 40px 0;
    max-width: none;
    border: 1px solid var(--line);
    background: var(--bg);
}

body.landing .pricing-range-item {
    background: transparent;
    border: none;
    border-right: 1px solid var(--line);
    border-radius: 0;
    padding: 40px 36px;
    text-align: left;
    transition: background 0.2s ease;
}

body.landing .pricing-range-item:last-child {
    border-right: none;
}

body.landing .pricing-range-item:hover {
    background: var(--bg-alt);
    border-color: var(--line);
    transform: none;
}

body.landing .pricing-range-item.featured {
    border-color: var(--line);
    background: var(--fg);
    color: var(--bg);
    position: relative;
}

body.landing .pricing-range-item.featured:hover {
    background: var(--fg);
}

body.landing .pricing-range-item.featured::before {
    content: "가장 많이 선택";
    position: absolute;
    top: 24px;
    right: 24px;
    left: auto;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--f-mono);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 4px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

body.landing .pricing-range-tag {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    color: var(--fg-3);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

body.landing .pricing-range-item.featured .pricing-range-tag {
    color: rgba(255, 255, 255, 0.65);
}

body.landing .pricing-range-price {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--fg);
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

body.landing .pricing-range-item.featured .pricing-range-price {
    color: var(--bg);
}

body.landing .pricing-range-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--fg-2);
    font-weight: 400;
}

body.landing .pricing-range-item.featured .pricing-range-desc {
    color: rgba(255, 255, 255, 0.75);
}

body.landing .pricing-disclaimer {
    text-align: left;
    font-size: 0.9rem;
    color: var(--fg-3);
    margin: 0;
    max-width: none;
}

body.landing .pricing-disclaimer strong {
    color: var(--fg);
    font-weight: 700;
}

/* ---------- Contact Form ---------- */
body.landing #contact-form {
    padding: 160px 0 !important;
    background: var(--bg);
}

body.landing .contact-form-wrap {
    max-width: 780px;
    margin: 0 auto;
    background: var(--bg);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
}

body.landing .contact-form-header {
    text-align: left;
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
}

body.landing .contact-form-header h2 {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--fg);
    margin-bottom: 16px;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

body.landing .contact-form-header p {
    font-size: 1.02rem;
    color: var(--fg-2);
    margin: 0;
    line-height: 1.65;
}

body.landing .contact-form-header strong {
    color: var(--fg);
    font-weight: 700;
}

body.landing .contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 0;
}

body.landing .contact-form .form-field {
    margin-bottom: 24px;
}

body.landing .contact-form label {
    display: block;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--fg-3);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

body.landing .contact-form .req {
    color: var(--accent);
    margin-left: 2px;
}

body.landing .contact-form input,
body.landing .contact-form select,
body.landing .contact-form textarea {
    width: 100%;
    padding: 14px 0;
    font-size: 1.02rem;
    font-family: var(--f-body);
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    transition: border-color 0.2s ease;
    color: var(--fg);
    letter-spacing: -0.005em;
}

body.landing .contact-form input:focus,
body.landing .contact-form select:focus,
body.landing .contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--fg);
    box-shadow: none;
}

body.landing .contact-form input::placeholder,
body.landing .contact-form textarea::placeholder {
    color: var(--fg-4);
    font-family: var(--f-body);
}

body.landing .contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.65;
    padding: 14px 0;
}

body.landing .contact-form select {
    padding-right: 24px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A3A3A3'><path d='M4 6l4 4 4-4'/></svg>");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 14px;
    appearance: none;
    -webkit-appearance: none;
}

body.landing .contact-form .form-actions {
    margin-top: 48px;
    text-align: left;
}

body.landing .contact-form .form-actions .btn-primary {
    background: var(--fg);
    color: var(--bg);
    padding: 20px 40px;
    font-size: 1rem;
    font-weight: 600;
    width: auto;
    max-width: none;
    border-radius: 8px;
    box-shadow: none;
    letter-spacing: -0.005em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.18s ease;
}

body.landing .contact-form .form-actions .btn-primary::after {
    content: "→";
    transition: transform 0.2s ease;
}

body.landing .contact-form .form-actions .btn-primary:hover {
    background: var(--accent);
    transform: none;
    box-shadow: none;
}

body.landing .contact-form .form-actions .btn-primary:hover::after {
    transform: translateX(4px);
}

body.landing .form-disclaimer {
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--fg-3);
    line-height: 1.65;
    max-width: 560px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

body.landing .form-disclaimer strong {
    color: var(--fg);
    font-weight: 700;
}

body.landing .contact-alt {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    text-align: left;
}

body.landing .contact-alt > p {
    font-family: var(--f-mono);
    font-size: 0.74rem;
    color: var(--fg-3);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
}

body.landing .contact-alt-links {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

body.landing .contact-alt-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    font-size: 0.92rem;
    color: var(--fg);
    font-weight: 500;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--bg);
    transition: all 0.15s ease;
}

body.landing .contact-alt-link i {
    font-size: 0.88rem;
    color: var(--fg-3);
}

body.landing .contact-alt-link:hover {
    border-color: var(--fg);
    background: var(--fg);
    color: var(--bg);
}

body.landing .contact-alt-link:hover i {
    color: var(--bg);
}

/* ---------- Existing sections polish (within .landing scope) ---------- */
body.landing #ai-agent .section-header,
body.landing #portfolio .section-header,
body.landing #testimonials .section-header,
body.landing #faq .section-header,
body.landing #services .section-header,
body.landing #process .section-header,
body.landing #technology .section-header,
body.landing #difference .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px auto;
}

body.landing #ai-agent .section-header h2,
body.landing #portfolio .section-header h2,
body.landing #testimonials .section-header h2,
body.landing #faq .section-header h2,
body.landing #services .section-header h2,
body.landing #process .section-header h2,
body.landing #technology .section-header h2,
body.landing #difference .section-header h2 {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--fg);
    line-height: 1.15;
    margin-bottom: 16px;
}

body.landing #ai-agent .section-header p,
body.landing #portfolio .section-header p,
body.landing #testimonials .section-header p,
body.landing #faq .section-header p,
body.landing #services .section-header p,
body.landing #process .section-header p,
body.landing #technology .section-header p,
body.landing #difference .section-header p {
    font-size: 1.05rem;
    color: var(--fg-2);
    line-height: 1.65;
    max-width: 540px;
    margin: 0 auto;
}

/* Footer polish */
body.landing footer {
    background: var(--fg);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

body.landing footer .footer-logo a {
    color: var(--bg);
    font-weight: 800;
    letter-spacing: -0.01em;
}

body.landing footer .footer-nav-grid a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.15s ease;
}

body.landing footer .footer-nav-grid a:hover {
    color: var(--bg);
}

body.landing footer .business-info {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    body.landing .section {
        padding: 100px 0;
    }

    body.landing .hero {
        padding: 80px 0 100px;
    }

    body.landing .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0;
    }

    body.landing .trust-item {
        padding: 40px 24px;
        border-left: none;
        border-right: none;
        border-top: none;
    }

    body.landing .trust-item:nth-child(2n) {
        border-left: none;
    }

    body.landing #why,
    body.landing #pricing,
    body.landing #contact-form {
        padding: 100px 0 !important;
    }

    body.landing .why-steps li {
        grid-template-columns: 80px 1fr;
        gap: 28px;
        padding: 36px 0;
    }

    body.landing .pricing-compare {
        grid-template-columns: 1fr;
    }

    body.landing .pricing-before {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    body.landing .pricing-range-grid {
        grid-template-columns: 1fr;
    }

    body.landing .pricing-range-item {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    body.landing .pricing-range-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 640px) {
    body.landing .container {
        padding: 0 20px;
    }

    body.landing .section {
        padding: 80px 0;
    }

    body.landing .hero {
        padding: 60px 0 80px;
    }

    body.landing .hero-eyebrow {
        font-size: 0.68rem;
        margin-bottom: 28px;
    }

    body.landing .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.08;
    }

    body.landing .hero-content p.hero-sub {
        font-size: 1.05rem;
    }

    body.landing .hero-cta-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 40px;
    }

    body.landing .hero-cta-wrap .btn-primary,
    body.landing .btn-ghost {
        justify-content: center;
        text-align: center;
        width: 100%;
        padding: 16px 24px;
    }

    body.landing .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    body.landing .trust-item {
        padding: 28px 16px;
    }

    body.landing .trust-num {
        font-size: 2.4rem;
    }

    body.landing .trust-label {
        font-size: 0.82rem;
    }

    body.landing #why,
    body.landing #pricing,
    body.landing #contact-form {
        padding: 80px 0 !important;
    }

    body.landing .why-intro {
        margin-bottom: 64px;
    }

    body.landing .why-steps li {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 28px 0;
    }

    body.landing .why-quote {
        padding: 12px 0 12px 24px;
    }

    body.landing .why-quote p {
        font-size: 1.2rem;
    }

    body.landing .pricing-card {
        padding: 32px 24px 28px;
    }

    body.landing .pricing-num {
        font-size: 2.4rem;
    }

    body.landing .pricing-range-item {
        padding: 28px 24px;
    }

    body.landing .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    body.landing .contact-alt-links {
        flex-direction: column;
        align-items: stretch;
    }

    body.landing .nav-menu li {
        margin: 15px 0;
    }

    body.landing .nav-menu .btn-contact {
        display: inline-block;
    }
}

/* Mobile nav (override existing mobile menu to match landing theme) */
@media screen and (max-width: 768px) {
    body.landing .nav-menu {
        background-color: var(--fg);
    }

    body.landing .nav-menu a {
        color: rgba(255, 255, 255, 0.85);
    }

    body.landing .nav-menu a:hover {
        color: var(--bg);
    }

    body.landing .nav-menu .btn-contact {
        background: var(--accent);
        color: var(--bg);
    }

    body.landing .menu-close i {
        color: var(--bg);
    }
}

/* ==========================================================================
   Phone Mockup 3D Carousel (Portfolio)
   ========================================================================== */

body.landing #portfolio {
    overflow: hidden;
    padding: 160px 0 !important;
    background:
        radial-gradient(ellipse at 50% 30%, #1c2340 0%, transparent 55%),
        linear-gradient(180deg, #0A0A0A 0%, #070a14 100%);
    color: #fff;
}

body.landing #portfolio.bg-light {
    background:
        radial-gradient(ellipse at 50% 30%, #1c2340 0%, transparent 55%),
        linear-gradient(180deg, #0A0A0A 0%, #070a14 100%);
}

body.landing #portfolio .section-header h2 {
    color: #fff;
}

body.landing #portfolio .section-header p {
    color: rgba(255, 255, 255, 0.66);
}

body.landing #portfolio .section-header .eyebrow {
    color: var(--coral, #E11D48);
}

body.landing #portfolio .section-header .eyebrow::before {
    background: var(--coral, #E11D48);
}

body.landing .phone-scene {
    position: relative;
    width: 100%;
    height: 520px;
    margin: 40px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1800px;
    perspective-origin: 50% 50%;
}

body.landing .phone-scene::before {
    content: "";
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.22) 0%, transparent 70%);
    filter: blur(12px);
    z-index: 0;
    pointer-events: none;
}

body.landing .phone-ring {
    position: relative;
    width: 220px;
    height: 440px;
    transform-style: preserve-3d;
    will-change: transform;
}

body.landing .phone-scene {
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

body.landing .phone-scene.is-dragging {
    cursor: grabbing;
}

body.landing .phone-scene.is-dragging .phone {
    cursor: grabbing;
}

/* prevent browser's native image/link drag ghost */
body.landing .phone-scene img,
body.landing .phone-scene a {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

/* child elements shouldn't swallow pointer events —
   drag detection + click both stay on the anchor */
body.landing .phone > * {
    pointer-events: none;
}

body.landing .phone {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 440px;
    transform-style: preserve-3d;
    backface-visibility: visible;
    transform: rotateY(var(--angle)) translateZ(360px);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

body.landing .phone-device {
    /* Now a real 3D box with 6 faces. Dimensions via CSS vars so responsive shrink is one-line. */
    --w: 220px;
    --h: 440px;
    --d: 14px;
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.32));
}

body.landing .phone:hover .phone-device {
    transform: translateZ(40px) scale(1.06);
}

/* ---- 3D faces (6) ---- */
body.landing .phone-face {
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
}

/* FRONT (screen side) */
body.landing .phone-face--front {
    width: 100%;
    height: 100%;
    background: #0A0A0A;
    border-radius: 36px;
    padding: 10px;
    transform: translateZ(calc(var(--d) / 2));
    box-shadow:
        0 0 0 1.5px rgba(255, 255, 255, 0.15) inset,
        0 0 0 3px rgba(0, 0, 0, 0.9) inset;
}

/* BACK */
body.landing .phone-face--back {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 15%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        linear-gradient(155deg, #1d1d1d 0%, #0a0a0a 55%, #050505 100%);
    border-radius: 36px;
    transform: translateZ(calc(var(--d) / -2)) rotateY(180deg);
    box-shadow:
        0 0 0 1.5px rgba(255, 255, 255, 0.08) inset,
        0 0 0 3px rgba(0, 0, 0, 0.9) inset;
}

/* EDGES — right / left (thin strips along Y) */
body.landing .phone-face--right,
body.landing .phone-face--left {
    width: var(--d);
    height: 100%;
    left: calc(50% - var(--d) / 2);
    top: 0;
    background: linear-gradient(90deg, #262626 0%, #060606 50%, #262626 100%);
    backface-visibility: visible;
    border-radius: 1px;
}

body.landing .phone-face--right {
    transform: rotateY(90deg) translateZ(calc(var(--w) / 2));
}

body.landing .phone-face--left {
    transform: rotateY(-90deg) translateZ(calc(var(--w) / 2));
}

/* EDGES — top / bottom (thin strips along X) */
body.landing .phone-face--top,
body.landing .phone-face--bottom {
    width: 100%;
    height: var(--d);
    top: calc(50% - var(--d) / 2);
    left: 0;
    background: linear-gradient(180deg, #262626 0%, #060606 50%, #262626 100%);
    backface-visibility: visible;
    border-radius: 1px;
}

body.landing .phone-face--top {
    transform: rotateX(-90deg) translateZ(calc(var(--h) / 2));
}

body.landing .phone-face--bottom {
    transform: rotateX(90deg) translateZ(calc(var(--h) / 2));
}

/* Physical side buttons (subtle bumps on the edges) */
body.landing .phone-face--right::before,
body.landing .phone-face--right::after,
body.landing .phone-face--left::before,
body.landing .phone-face--left::after {
    content: "";
    position: absolute;
    left: 1px;
    right: 1px;
    height: 32px;
    background: linear-gradient(90deg, #303030, #121212);
    border-radius: 1px;
}

body.landing .phone-face--right::before { top: 110px; } /* power button */
body.landing .phone-face--left::before  { top: 90px; height: 20px; } /* ringer */
body.landing .phone-face--left::after   { top: 120px; height: 48px; } /* volume up+down combined */

/* Back: camera island + brand */
body.landing .phone-camera-island {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 86px;
    height: 86px;
    background: linear-gradient(135deg, #1c1c1c 0%, #0a0a0a 100%);
    border-radius: 22px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 4px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

body.landing .phone-lens {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 28%, #303030 0%, #090909 55%, #000 100%);
    box-shadow:
        inset 0 0 0 3px #0a0a0a,
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 2px 2px rgba(255, 255, 255, 0.1);
}

body.landing .phone-lens--1 { top: 10px; left: 10px;   width: 28px; height: 28px; }
body.landing .phone-lens--2 { top: 10px; right: 10px;  width: 28px; height: 28px; }
body.landing .phone-lens--3 { bottom: 10px; left: 10px; width: 28px; height: 28px; }

body.landing .phone-flash {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fafafa 0%, #bcbcbc 60%, #6a6a6a 100%);
    box-shadow:
        inset 0 0 0 2px #0a0a0a,
        0 0 4px rgba(255, 255, 255, 0.15);
}

body.landing .phone-brand {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.22);
}

body.landing .phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 86px;
    height: 22px;
    background: #0A0A0A;
    border-radius: 14px;
    z-index: 3;
}

body.landing .phone-notch::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #1f1f1f;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1.5px #2a2a2a;
}

body.landing .phone-scene .phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    background: var(--screen-bg, #1e3a8a);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    color: white;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

/* Representative logo fills the full screen width, centered in upper region */
body.landing .phone-hero {
    display: block;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    background: var(--screen-bg, #1e3a8a);
    padding: 18px 14px;
}

/* Bottom info band — matches screen bg, text color from --screen-fg */
body.landing .phone-info {
    flex: 0 0 auto;
    padding: 14px 12px 18px;
    text-align: center;
    background: var(--screen-bg, #ffffff);
    color: var(--screen-fg, #0a0a0a);
}

body.landing .phone-title {
    font-family: var(--f-display);
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--screen-fg, #0a0a0a);
    margin-bottom: 6px;
    line-height: 1.15;
    max-width: 100%;
    overflow-wrap: break-word;
}

body.landing .phone-tag {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--screen-fg, #0a0a0a);
    opacity: 0.72;
    padding: 3px 10px;
    border: 1px solid color-mix(in srgb, var(--screen-fg, #0a0a0a) 28%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--screen-fg, #0a0a0a) 6%, transparent);
}

body.landing .phone-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    z-index: 2;
}

body.landing .phone-caption {
    display: none;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    body.landing .phone-ring {
        animation: none;
    }
}

/* Tablet: smaller ring */
@media (max-width: 992px) {
    body.landing #portfolio {
        padding: 120px 0 !important;
    }

    body.landing .phone-scene {
        height: 460px;
        perspective: 1400px;
    }

    body.landing .phone-ring {
        width: 180px;
        height: 360px;
    }

    body.landing .phone {
        width: 180px;
        height: 360px;
        transform: rotateY(var(--angle)) translateZ(300px);
    }

    body.landing .phone-device {
        --w: 180px;
        --h: 360px;
        --d: 12px;
    }

    body.landing .phone-camera-island {
        top: 16px;
        left: 16px;
        width: 70px;
        height: 70px;
        border-radius: 18px;
    }

    body.landing .phone-lens--1,
    body.landing .phone-lens--2,
    body.landing .phone-lens--3 {
        width: 22px;
        height: 22px;
    }

    body.landing .phone-lens--1 { top: 8px; left: 8px; }
    body.landing .phone-lens--2 { top: 8px; right: 8px; }
    body.landing .phone-lens--3 { bottom: 8px; left: 8px; }

    body.landing .phone-flash {
        width: 14px;
        height: 14px;
        bottom: 11px;
        right: 11px;
    }

    body.landing .phone-brand {
        font-size: 0.9rem;
    }

    body.landing .phone-notch {
        width: 74px;
        height: 20px;
        top: 16px;
    }

    body.landing .phone-logo {
        width: 72px;
        height: 72px;
        padding: 12px;
        border-radius: 18px;
    }

    body.landing .phone-title {
        font-size: 0.95rem;
    }
}

/* Mobile: keep 3D rotation, shrink ring and phone to fit */
@media (max-width: 640px) {
    body.landing #portfolio {
        padding: 80px 0 !important;
        overflow: hidden;
    }

    body.landing .phone-scene {
        height: 400px;
        padding: 0;
        perspective: 1100px;
        overflow: hidden;
    }

    body.landing .phone-scene::before {
        width: 240px;
        bottom: 6%;
    }

    body.landing .phone-ring {
        width: 150px;
        height: 300px;
        animation-duration: 32s;
    }

    body.landing .phone {
        width: 150px;
        height: 300px;
        transform: rotateY(var(--angle)) translateZ(220px);
    }

    body.landing .phone-device {
        --w: 150px;
        --h: 300px;
        --d: 10px;
        filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.3));
    }

    body.landing .phone-face--front,
    body.landing .phone-face--back {
        border-radius: 26px;
    }

    body.landing .phone-face--front {
        padding: 7px;
    }

    body.landing .phone-camera-island {
        top: 14px;
        left: 14px;
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

    body.landing .phone-lens--1,
    body.landing .phone-lens--2,
    body.landing .phone-lens--3 {
        width: 18px;
        height: 18px;
    }

    body.landing .phone-lens--1 { top: 7px; left: 7px; }
    body.landing .phone-lens--2 { top: 7px; right: 7px; }
    body.landing .phone-lens--3 { bottom: 7px; left: 7px; }

    body.landing .phone-flash {
        width: 12px;
        height: 12px;
        bottom: 9px;
        right: 9px;
    }

    body.landing .phone-brand {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
    }

    body.landing .phone-face--right::before { top: 66px; height: 20px; }
    body.landing .phone-face--left::before  { top: 54px; height: 14px; }
    body.landing .phone-face--left::after   { top: 74px; height: 34px; }

    body.landing .phone:hover .phone-device {
        transform: none;
    }

    body.landing .phone-notch {
        width: 60px;
        height: 16px;
        top: 12px;
        border-radius: 10px;
    }

    body.landing .phone-notch::after {
        right: 9px;
        width: 4px;
        height: 4px;
    }

    body.landing .phone-scene .phone-screen {
        border-radius: 20px;
        padding: 32px 14px 24px;
    }

    body.landing .phone-status {
        font-size: 0.56rem;
        margin-bottom: 28px;
    }

    body.landing .phone-logo {
        width: 58px;
        height: 58px;
        padding: 9px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    body.landing .phone-title {
        font-size: 0.82rem;
        margin-bottom: 5px;
    }

    body.landing .phone-tag {
        font-size: 0.52rem;
        padding: 3px 8px;
        letter-spacing: 0.14em;
    }

    body.landing .phone-indicator {
        bottom: 8px;
        width: 62px;
        height: 2.5px;
    }
}

/* Very small phones: further shrink so ring fits narrow viewports */
@media (max-width: 380px) {
    body.landing .phone-scene {
        height: 360px;
        perspective: 900px;
    }

    body.landing .phone-ring {
        width: 130px;
        height: 260px;
    }

    body.landing .phone {
        width: 130px;
        height: 260px;
        transform: rotateY(var(--angle)) translateZ(180px);
    }

    body.landing .phone-device {
        --w: 130px;
        --h: 260px;
        --d: 9px;
    }

    body.landing .phone-camera-island {
        width: 50px;
        height: 50px;
        top: 12px;
        left: 12px;
        border-radius: 14px;
    }

    body.landing .phone-lens--1,
    body.landing .phone-lens--2,
    body.landing .phone-lens--3 {
        width: 15px;
        height: 15px;
    }

    body.landing .phone-lens--1 { top: 6px; left: 6px; }
    body.landing .phone-lens--2 { top: 6px; right: 6px; }
    body.landing .phone-lens--3 { bottom: 6px; left: 6px; }

    body.landing .phone-flash {
        width: 10px;
        height: 10px;
    }

    body.landing .phone-logo {
        width: 50px;
        height: 50px;
        padding: 8px;
        margin-bottom: 10px;
    }

    body.landing .phone-status {
        margin-bottom: 20px;
    }

    body.landing .phone-title {
        font-size: 0.76rem;
    }
}

/* ==========================================================================
   Landing — rest of sections (editorial pass)
   AI Agent / Difference / Services / Process / Technology / Testimonials / FAQ
   ========================================================================== */

/* ---------- Section backgrounds: deliberate rhythm ---------- */
body.landing #ai-agent      { background: var(--bg); }
body.landing #difference    { background: var(--bg-alt); }
body.landing #services      { background: var(--bg); }
body.landing #process       { background: var(--bg-alt); }
body.landing #technology    { background: var(--bg); }
body.landing #testimonials  { background: var(--bg-alt); }
body.landing #faq           { background: var(--bg); }

/* All generic section padding consistent */
body.landing #ai-agent,
body.landing #difference,
body.landing #services,
body.landing #process,
body.landing #technology,
body.landing #testimonials,
body.landing #faq {
    padding: 140px 0 !important;
}

/* Shared eyebrow above h2 (centered header) */
body.landing #ai-agent .section-header,
body.landing #difference .section-header,
body.landing #services .section-header,
body.landing #process .section-header,
body.landing #technology .section-header,
body.landing #testimonials .section-header,
body.landing #faq .section-header {
    max-width: 720px;
    margin: 0 auto 80px auto;
}

/* ==========================================================================
   AI Agent — two-column split (muted pain vs dark solution)
   ========================================================================== */
body.landing #ai-agent .comparison-section {
    margin: 0;
}

body.landing #ai-agent .comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--line);
    align-items: stretch;
    background: var(--bg);
}

body.landing #ai-agent .comparison-divider {
    display: none;
}

body.landing #ai-agent .comparison-item {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 48px 44px;
    transition: none;
    height: auto;
}

body.landing #ai-agent .comparison-item:hover {
    transform: none;
    box-shadow: none;
}

body.landing #ai-agent .pain-points {
    border-left: none;
    border-right: 1px solid var(--line);
    background: var(--bg);
}

body.landing #ai-agent .solutions {
    border-left: none;
    background: var(--fg);
    color: var(--bg);
}

body.landing #ai-agent .comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent);
}

body.landing #ai-agent .comparison-header i {
    font-size: 1.1rem;
    margin: 0;
}

body.landing #ai-agent .comparison-header.pain i {
    color: var(--fg-3);
}

body.landing #ai-agent .comparison-header.solution i {
    color: var(--accent);
}

body.landing #ai-agent .comparison-header h3 {
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: inherit;
    margin: 0;
}

body.landing #ai-agent .comparison-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.landing #ai-agent .comparison-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid color-mix(in srgb, currentColor 8%, transparent);
    font-size: 0.98rem;
    line-height: 1.55;
}

body.landing #ai-agent .comparison-point:last-child {
    border-bottom: none;
}

body.landing #ai-agent .comparison-point i {
    font-size: 0.9rem;
    margin-top: 4px;
    color: color-mix(in srgb, currentColor 60%, transparent);
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

body.landing #ai-agent .comparison-point span {
    color: inherit;
    opacity: 0.85;
}

body.landing #ai-agent .solutions .comparison-point span {
    opacity: 0.92;
}

body.landing #ai-agent .subscription-cta {
    margin-top: 56px;
    text-align: center;
}

body.landing #ai-agent .subscription-cta .btn-primary {
    background: var(--fg);
    color: var(--bg);
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--f-body);
    font-weight: 600;
    letter-spacing: -0.005em;
    box-shadow: none;
    transition: background 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body.landing #ai-agent .subscription-cta .btn-primary::after {
    content: "→";
    transition: transform 0.2s ease;
}

body.landing #ai-agent .subscription-cta .btn-primary:hover {
    background: var(--accent);
    transform: none;
    box-shadow: none;
}

body.landing #ai-agent .subscription-cta .btn-primary:hover::after {
    transform: translateX(4px);
}

/* ==========================================================================
   Difference — editorial 3×2 grid, no icon cards
   ========================================================================== */
body.landing #difference .difference-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1080px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

body.landing #difference .difference-item {
    background: transparent;
    padding: 40px 36px 44px;
    box-shadow: none;
    border-radius: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.2s ease;
    text-align: left;
    position: relative;
}

body.landing #difference .difference-item:hover {
    background: var(--bg);
    transform: none;
    box-shadow: none;
}

body.landing #difference .difference-item::before {
    content: "0" counter(diff-counter);
    counter-increment: diff-counter;
    display: block;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 20px;
}

body.landing #difference .difference-container {
    counter-reset: diff-counter;
}

body.landing #difference .difference-icon {
    display: none; /* replaced with number */
}

body.landing #difference .difference-item h3 {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0 0 12px;
}

body.landing #difference .difference-item p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--fg-2);
    margin: 0;
}

/* Remove the "우리의 차별점 더 보기" CTA card styling, keep as simple link */
body.landing #difference .story-cta-section {
    margin-top: 56px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

body.landing #difference .story-cta-content {
    background: transparent;
    padding: 0;
}

body.landing #difference .story-cta-content h3 {
    font-family: var(--f-display);
    font-size: 1.2rem;
    color: var(--fg-2);
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

body.landing #difference .btn-story-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    background: var(--fg);
    color: var(--bg);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.96rem;
    letter-spacing: -0.005em;
    transition: background 0.18s ease;
    border: none;
    box-shadow: none;
}

body.landing #difference .btn-story-cta::after {
    content: "→";
    transition: transform 0.2s ease;
}

body.landing #difference .btn-story-cta:hover {
    background: var(--accent);
    color: var(--bg);
    transform: none;
    box-shadow: none;
}

body.landing #difference .btn-story-cta:hover::after {
    transform: translateX(4px);
}

/* ==========================================================================
   Services — clean 2×2 grid (no icon cards)
   ========================================================================== */
body.landing #services .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

body.landing #services .service-card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 44px 40px;
    transition: background 0.2s ease;
    text-align: left;
}

body.landing #services .service-card:hover {
    transform: none;
    box-shadow: none;
    background: var(--bg-alt);
}

body.landing #services .service-icon {
    display: inline-flex;
    gap: 12px;
    width: auto;
    height: auto;
    background: transparent;
    color: var(--fg-3);
    font-size: 1.3rem;
    margin: 0 0 22px;
    align-items: center;
}

body.landing #services .service-icon i {
    width: auto;
    height: auto;
}

body.landing #services .service-card h3 {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    line-height: 1.3;
}

body.landing #services .service-card p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--fg-2);
    margin: 0;
}

/* ==========================================================================
   Process — vertical editorial numbered list (like .why-steps)
   ========================================================================== */
body.landing #process .process-timeline {
    display: block;
    max-width: 860px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--line);
}

body.landing #process .process-timeline::before,
body.landing #process .process-timeline::after {
    display: none;
}

body.landing #process .timeline-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 40px;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    background: transparent;
    width: auto;
    margin: 0;
}

body.landing #process .timeline-number {
    font-family: var(--f-mono);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--fg-3);
    padding-top: 6px;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: block;
    line-height: 1;
}

body.landing #process .timeline-item h3 {
    font-family: var(--f-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--fg);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

body.landing #process .timeline-item p {
    font-size: 1.02rem;
    line-height: 1.72;
    color: var(--fg-2);
    margin: 0;
    max-width: 600px;
}

/* ==========================================================================
   Technology — minimal tag chip grid per category
   ========================================================================== */
body.landing #technology .tech-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1080px;
    margin: 0 auto;
}

body.landing #technology .tech-category {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    padding-top: 32px;
}

body.landing #technology .tech-category h3 {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--fg-3);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 24px;
    padding: 0;
    border: none;
}

body.landing #technology .tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
}

body.landing #technology .tech-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--fg);
    box-shadow: none;
    transition: all 0.15s ease;
    margin: 0;
    width: auto;
}

body.landing #technology .tech-item:hover {
    background: var(--fg);
    color: var(--bg);
    border-color: var(--fg);
}

body.landing #technology .tech-item i {
    font-size: 0.95rem;
    color: inherit;
}

body.landing #technology .tech-item span {
    font-weight: 500;
    color: inherit;
}

/* ==========================================================================
   Testimonials — large editorial pull-quote slider
   ========================================================================== */
body.landing #testimonials .testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    height: 460px; /* fixed so the controls below stay anchored */
    overflow: visible;
}

body.landing #testimonials .testimonial-slide {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

body.landing #testimonials .testimonial-slide.active {
    opacity: 1;
    pointer-events: auto;
}

body.landing #testimonials .testimonial-content {
    padding: 0;
    text-align: center;
    background-color: transparent;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

body.landing #testimonials .testimonial-content > p {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    max-width: 760px;
    overflow: hidden;
}

body.landing #testimonials .client-info {
    margin-top: auto;
    flex-shrink: 0;
}

body.landing #testimonials .testimonial-content::before {
    content: none;
    display: none;
}

body.landing #testimonials .testimonial-content p {
    font-family: var(--f-display);
    font-size: 1.55rem;
    line-height: 1.5;
    color: var(--fg);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 0 auto 40px;
    max-width: 760px;
}

body.landing #testimonials .client-info {
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: inline-block;
}

body.landing #testimonials .client-info h4 {
    font-family: var(--f-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.01em;
    margin: 0 0 4px;
}

body.landing #testimonials .client-info > p {
    font-family: var(--f-mono);
    font-size: 0.74rem;
    color: var(--fg-3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
}

body.landing #testimonials .testimonial-portfolio-btn {
    margin-top: 20px;
}

body.landing #testimonials .btn-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent !important;
    color: var(--fg) !important;
    border: 1px solid var(--line) !important;
    padding: 9px 18px !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    letter-spacing: -0.005em !important;
}

body.landing #testimonials .btn-portfolio::after {
    content: "→";
}

body.landing #testimonials .btn-portfolio:hover {
    background: var(--fg) !important;
    color: var(--bg) !important;
    border-color: var(--fg) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Testimonial controls */
body.landing #testimonials .testimonial-controls {
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

body.landing #testimonials .testimonial-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--fg);
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.landing #testimonials .testimonial-controls button:hover {
    background: var(--fg);
    color: var(--bg);
    border-color: var(--fg);
}

body.landing #testimonials .testimonial-dots {
    display: flex;
    gap: 8px;
}

body.landing #testimonials .testimonial-dots .dot {
    width: 6px;
    height: 6px;
    background: var(--line);
    border-radius: 50%;
    transition: all 0.2s ease;
    cursor: pointer;
}

body.landing #testimonials .testimonial-dots .dot.active {
    background: var(--fg);
    transform: scale(1.4);
}

/* ==========================================================================
   FAQ — minimal accordion, thin dividers
   ========================================================================== */
body.landing #faq .faq-container {
    max-width: 860px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

body.landing #faq .faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin: 0;
}

body.landing #faq .faq-question {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    transition: color 0.15s ease;
}

body.landing #faq .faq-question:hover {
    color: var(--accent);
}

body.landing #faq .faq-question h3 {
    font-family: var(--f-display);
    font-size: 1.12rem;
    font-weight: 600;
    color: inherit;
    letter-spacing: -0.015em;
    margin: 0;
    line-height: 1.4;
}

body.landing #faq .faq-question .toggle-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fg-3);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

body.landing #faq .faq-question .toggle-icon i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

body.landing #faq .faq-item.active .toggle-icon {
    background: var(--fg);
    color: var(--bg);
    border-color: var(--fg);
}

body.landing #faq .faq-item.active .toggle-icon i {
    transform: rotate(45deg);
}

body.landing #faq .faq-answer {
    padding: 0 0 32px;
    max-width: 760px;
}

body.landing #faq .faq-answer p {
    font-size: 1rem;
    line-height: 1.72;
    color: var(--fg-2);
    margin: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    body.landing #ai-agent,
    body.landing #difference,
    body.landing #services,
    body.landing #process,
    body.landing #technology,
    body.landing #testimonials,
    body.landing #faq {
        padding: 100px 0 !important;
    }

    body.landing #ai-agent .comparison-container {
        grid-template-columns: 1fr;
    }

    body.landing #ai-agent .pain-points {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    body.landing #difference .difference-container {
        grid-template-columns: repeat(2, 1fr);
    }

    body.landing #services .services-grid {
        grid-template-columns: 1fr;
    }

    body.landing #technology .tech-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    body.landing #testimonials .testimonial-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    body.landing #ai-agent,
    body.landing #difference,
    body.landing #services,
    body.landing #process,
    body.landing #technology,
    body.landing #testimonials,
    body.landing #faq {
        padding: 80px 0 !important;
    }

    body.landing #ai-agent .comparison-item {
        padding: 32px 24px;
    }

    body.landing #difference .difference-container {
        grid-template-columns: 1fr;
    }

    body.landing #difference .difference-item {
        padding: 32px 24px;
    }

    body.landing #services .service-card {
        padding: 32px 24px;
    }

    body.landing #process .timeline-item {
        grid-template-columns: 70px 1fr;
        gap: 20px;
        padding: 28px 0;
    }

    body.landing #process .timeline-item h3 {
        font-size: 1.2rem;
    }

    body.landing #testimonials .testimonial-content::before {
        display: none;
    }

    body.landing #testimonials .testimonial-content p {
        font-size: 1.15rem;
    }

    body.landing #faq .faq-question {
        padding: 22px 0;
    }

    body.landing #faq .faq-question h3 {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Landing — Colored section palette (v4)
   Replaces the flat white/gray alternation with distinct tonal moods
   per section. Scoped to body.landing.
   ========================================================================== */

:root {
    --c-deep-navy: #0F1B3C;
    --c-deep-navy-alt: #0A1230;
    --c-charcoal: #0B1224;
    --c-cream: #FAF5EB;
    --c-cream-alt: #F5EFE2;
    --c-beige: #F0E6D6;
    --c-mist: #EEF2F7;
    --c-rose: #E11D48;
    --c-muted-navy: #1E2D42;
    --c-muted-navy-alt: #141E32;
    --c-gold: #FFD76A;
}

/* ==========================================================================
   HEADER / HERO — deep navy with subtle rose glow
   ========================================================================== */
body.landing header {
    background:
        radial-gradient(ellipse 80% 60% at 18% 12%, rgba(225, 29, 72, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 85%, rgba(255, 215, 106, 0.08) 0%, transparent 55%),
        linear-gradient(160deg, #0E1A3E 0%, #0A0F2A 55%, #050914 100%);
    color: #fff;
    border-bottom: none;
    padding-bottom: 0;
    overflow: hidden;
}

body.landing header::before {
    display: none;
}

body.landing nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}

body.landing .logo a {
    color: #fff;
}

body.landing .nav-menu a {
    color: rgba(255, 255, 255, 0.72);
}

body.landing .nav-menu a:hover {
    color: #fff;
}

body.landing .nav-menu .btn-contact {
    background: #fff;
    color: var(--c-deep-navy);
}

body.landing .nav-menu .btn-contact:hover {
    background: var(--c-rose);
    color: #fff;
}

body.landing .menu-toggle {
    color: #fff;
}

body.landing .hero-content h1 {
    color: #fff;
}

body.landing .hero-content h1 .hero-accent {
    color: var(--c-gold);
    -webkit-text-fill-color: var(--c-gold);
}

body.landing .hero-content h1 .hero-accent::before {
    background: rgba(225, 29, 72, 0.35);
}

body.landing .hero-eyebrow {
    color: rgba(255, 215, 106, 0.85);
}

body.landing .hero-eyebrow::before {
    background: rgba(255, 215, 106, 0.4);
}

body.landing .hero-content p.hero-sub {
    color: rgba(255, 255, 255, 0.75);
}

body.landing .hero-content p.hero-sub strong {
    color: #fff;
    background: linear-gradient(180deg, transparent 62%, rgba(225, 29, 72, 0.5) 62%);
}

body.landing .hero-cta-wrap .btn-primary {
    background: #fff;
    color: var(--c-deep-navy);
    box-shadow: 0 16px 40px -12px rgba(255, 255, 255, 0.25);
}

body.landing .hero-cta-wrap .btn-primary:hover {
    background: var(--c-rose);
    color: #fff;
    box-shadow: 0 20px 44px -10px rgba(225, 29, 72, 0.55);
}

body.landing .btn-ghost {
    color: rgba(255, 255, 255, 0.85);
    text-decoration-color: rgba(255, 255, 255, 0.2);
}

body.landing .btn-ghost:hover {
    color: var(--c-rose);
    text-decoration-color: var(--c-rose);
    background: transparent;
}

body.landing .hero-content p.hero-cta-sub {
    color: rgba(255, 255, 255, 0.48);
}

/* ==========================================================================
   TRUST BAR — warm cream (pops against dark hero)
   ========================================================================== */
body.landing .trust-bar {
    background: var(--c-cream);
    color: var(--fg);
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.landing .trust-item {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

body.landing .trust-item:first-child {
    border-left: none;
}

body.landing .trust-num {
    color: var(--fg);
}

body.landing .trust-unit {
    color: var(--c-rose);
}

body.landing .trust-label {
    color: var(--fg-2);
}

/* ==========================================================================
   WHY — white (unchanged, readable)
   ========================================================================== */
body.landing #why {
    background: var(--bg);
}

body.landing .why-intro h2 em {
    color: var(--c-rose);
}

body.landing .why-intro h2 em::after {
    background: rgba(225, 29, 72, 0.15);
}

body.landing .eyebrow {
    color: var(--c-rose);
}

body.landing .eyebrow::before {
    background: var(--c-rose);
}

body.landing .why-quote {
    border-left-color: var(--c-rose);
}

body.landing .why-quote p em {
    color: var(--c-rose);
    background: linear-gradient(180deg, transparent 60%, rgba(225, 29, 72, 0.15) 60%);
}

/* ==========================================================================
   PRICING — deep navy with rose accents (premium tier feel)
   ========================================================================== */
body.landing #pricing {
    background:
        radial-gradient(ellipse 50% 40% at 85% 15%, rgba(225, 29, 72, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 35% at 15% 85%, rgba(255, 215, 106, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--c-deep-navy) 0%, var(--c-deep-navy-alt) 100%);
    color: #fff;
}

body.landing #pricing .section-header h2 {
    color: #fff;
}

body.landing #pricing .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

body.landing #pricing .section-header strong {
    color: #fff;
}

body.landing .pricing-compare {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

body.landing .pricing-card {
    background: transparent;
    border: none;
}

body.landing .pricing-before {
    background: transparent;
    border-top: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

body.landing .pricing-before .pricing-label {
    color: rgba(255, 255, 255, 0.5);
}

body.landing .pricing-before .pricing-num {
    color: rgba(255, 255, 255, 0.5);
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

body.landing .pricing-before .pricing-num span {
    color: rgba(255, 255, 255, 0.4);
}

body.landing .pricing-before .pricing-list li {
    color: rgba(255, 255, 255, 0.65);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.landing .pricing-before .pricing-list li::before {
    color: rgba(255, 255, 255, 0.4);
}

body.landing .pricing-after {
    background: #fff;
    color: var(--fg);
    border-top: 3px solid var(--c-rose);
    box-shadow: 0 24px 50px -20px rgba(225, 29, 72, 0.3);
}

body.landing .pricing-after .pricing-label {
    color: var(--c-rose);
}

body.landing .pricing-after .pricing-num {
    color: var(--fg);
}

body.landing .pricing-after .pricing-num span {
    color: var(--fg-3);
}

body.landing .pricing-after .pricing-list li {
    color: var(--fg-2);
    border-bottom-color: var(--line-2);
}

body.landing .pricing-after .pricing-list li::before {
    color: var(--c-rose);
}

body.landing .pricing-after .pricing-list li strong {
    color: var(--fg);
}

body.landing .pricing-range h3 {
    color: #fff;
}

body.landing .pricing-range-grid {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

body.landing .pricing-range-item {
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

body.landing .pricing-range-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: none;
}

body.landing .pricing-range-item.featured {
    background: #fff;
    color: var(--fg);
    border-color: transparent;
}

body.landing .pricing-range-item.featured::before {
    background: var(--c-rose);
}

body.landing .pricing-range-item.featured .pricing-range-tag {
    color: var(--c-rose);
}

body.landing .pricing-range-item.featured .pricing-range-price {
    color: var(--fg);
}

body.landing .pricing-range-item.featured .pricing-range-desc {
    color: var(--fg-2);
}

body.landing .pricing-range-tag {
    color: rgba(255, 255, 255, 0.55);
}

body.landing .pricing-range-price {
    color: #fff;
}

body.landing .pricing-range-desc {
    color: rgba(255, 255, 255, 0.68);
}

body.landing .pricing-disclaimer {
    color: rgba(255, 255, 255, 0.55);
}

body.landing .pricing-disclaimer strong {
    color: #fff;
}

/* ==========================================================================
   AI AGENT — light misty blue
   ========================================================================== */
body.landing #ai-agent {
    background: var(--c-mist);
}

body.landing #ai-agent .comparison-container {
    background: #fff;
    border: 1px solid rgba(15, 27, 60, 0.08);
    box-shadow: 0 16px 40px -24px rgba(15, 27, 60, 0.15);
}

body.landing #ai-agent .pain-points {
    border-right: 1px solid rgba(15, 27, 60, 0.08);
}

body.landing #ai-agent .solutions {
    background: var(--c-deep-navy);
}

body.landing #ai-agent .solutions .comparison-header.solution i {
    color: var(--c-rose);
}

/* ==========================================================================
   PORTFOLIO — keep existing dark stage (set earlier)
   ========================================================================== */
/* (unchanged — handled in main landing.css) */

/* ==========================================================================
   DIFFERENCE — warm beige
   ========================================================================== */
body.landing #difference {
    background: var(--c-beige);
}

body.landing #difference .difference-container {
    border-top-color: rgba(0, 0, 0, 0.1);
    border-left-color: rgba(0, 0, 0, 0.1);
}

body.landing #difference .difference-item {
    border-right-color: rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.landing #difference .difference-item:hover {
    background: rgba(255, 255, 255, 0.5);
}

body.landing #difference .difference-item::before {
    color: var(--c-rose);
}

body.landing #difference .btn-story-cta {
    background: var(--c-deep-navy);
    color: #fff;
}

body.landing #difference .btn-story-cta:hover {
    background: var(--c-rose);
    color: #fff;
}

/* ==========================================================================
   SERVICES — white (unchanged but polish)
   ========================================================================== */
body.landing #services {
    background: var(--bg);
}

/* ==========================================================================
   PROCESS — warm cream
   ========================================================================== */
body.landing #process {
    background: var(--c-cream);
}

body.landing #process .process-timeline {
    border-top-color: rgba(0, 0, 0, 0.1);
}

body.landing #process .timeline-item {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   TECHNOLOGY — white (clean break between cream sections)
   ========================================================================== */
body.landing #technology {
    background: var(--bg);
}

body.landing #technology .tech-category {
    border-top-color: rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   TESTIMONIALS — deep muted navy with rose glow
   ========================================================================== */
body.landing #testimonials {
    background:
        radial-gradient(ellipse 55% 45% at 20% 25%, rgba(225, 29, 72, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, var(--c-muted-navy) 0%, var(--c-muted-navy-alt) 100%);
    color: #fff;
}

body.landing #testimonials .section-header h2 {
    color: #fff;
}

body.landing #testimonials .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

body.landing #testimonials .testimonial-content::before {
    display: none;
    content: none;
}

body.landing #testimonials .testimonial-content p {
    color: #fff;
}

body.landing #testimonials .client-info {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

body.landing #testimonials .client-info h4 {
    color: #fff;
}

body.landing #testimonials .client-info > p {
    color: rgba(255, 255, 255, 0.55);
}

body.landing #testimonials .btn-portfolio {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

body.landing #testimonials .btn-portfolio:hover {
    background: #fff !important;
    color: var(--fg) !important;
    border-color: #fff !important;
}

body.landing #testimonials .testimonial-controls button {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    background: transparent;
}

body.landing #testimonials .testimonial-controls button:hover {
    background: #fff;
    color: var(--fg);
    border-color: #fff;
}

body.landing #testimonials .testimonial-dots .dot {
    background: rgba(255, 255, 255, 0.25);
}

body.landing #testimonials .testimonial-dots .dot.active {
    background: #fff;
}

/* ==========================================================================
   FAQ — warm beige (matches #difference rhythm)
   ========================================================================== */
body.landing #faq {
    background: var(--c-beige);
}

body.landing #faq .faq-container {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.landing #faq .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.landing #faq .faq-question .toggle-icon {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
}

body.landing #faq .faq-question:hover {
    color: var(--c-rose);
}

body.landing #faq .faq-item.active .toggle-icon {
    background: var(--c-rose);
    color: #fff;
    border-color: var(--c-rose);
}

/* ==========================================================================
   CONTACT FORM — dark navy final CTA
   ========================================================================== */
body.landing #contact-form {
    background:
        radial-gradient(ellipse 50% 45% at 50% 0%, rgba(225, 29, 72, 0.15) 0%, transparent 55%),
        linear-gradient(180deg, var(--c-deep-navy) 0%, var(--c-charcoal) 100%);
    color: #fff;
}

body.landing .contact-form-wrap {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px -40px rgba(225, 29, 72, 0.35);
}

body.landing .contact-form-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.landing .contact-form-header h2 {
    color: #fff;
}

body.landing .contact-form-header p {
    color: rgba(255, 255, 255, 0.7);
}

body.landing .contact-form-header strong {
    color: var(--c-rose);
}

body.landing .contact-form label {
    color: rgba(255, 255, 255, 0.55);
}

body.landing .contact-form .req {
    color: var(--c-rose);
}

body.landing .contact-form input,
body.landing .contact-form select,
body.landing .contact-form textarea {
    border-bottom-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    background: transparent;
}

body.landing .contact-form input:focus,
body.landing .contact-form select:focus,
body.landing .contact-form textarea:focus {
    border-bottom-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

body.landing .contact-form input::placeholder,
body.landing .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

body.landing .contact-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path d='M4 6l4 4 4-4'/></svg>");
}

body.landing .contact-form select option {
    color: var(--fg);
    background: #fff;
}

/* Form wrap polish on dark bg — glass feel + better separation */
body.landing .contact-form-wrap {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 56px 48px;
    border-radius: 14px;
}

body.landing .contact-form .form-field {
    margin-bottom: 22px;
}

body.landing .contact-form .form-row {
    margin-bottom: 0;
}

body.landing .contact-form .form-row .form-field {
    margin-bottom: 22px;
}

body.landing .contact-form input,
body.landing .contact-form select,
body.landing .contact-form textarea {
    padding: 12px 2px 14px;
    font-size: 1rem;
}

/* select needs extra right padding for the custom arrow */
body.landing .contact-form select {
    padding: 12px 30px 14px 2px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path d='M4 6l4 4 4-4'/></svg>");
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    line-height: 1.4;
}

body.landing .contact-form select:focus {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path d='M4 6l4 4 4-4'/></svg>");
}

/* ensure dropdown options are readable (native popup uses these) */
body.landing .contact-form select option {
    color: #0a0a0a;
    background-color: #fff;
    padding: 8px;
}

body.landing .contact-form textarea {
    min-height: 120px;
    padding-top: 12px;
}

body.landing .contact-form .form-actions {
    margin-top: 40px;
    text-align: center;
}

body.landing .contact-form .form-actions .btn-primary {
    padding: 17px 36px;
    min-width: 240px;
    justify-content: center;
}

@media (max-width: 640px) {
    body.landing .contact-form-wrap {
        padding: 32px 22px;
        border-radius: 10px;
    }

    body.landing .contact-form .form-actions .btn-primary {
        width: 100%;
        min-width: 0;
    }
}

body.landing .contact-form .form-actions .btn-primary {
    background: #fff;
    color: var(--c-deep-navy);
    box-shadow: 0 14px 34px -8px rgba(255, 255, 255, 0.2);
}

body.landing .contact-form .form-actions .btn-primary:hover {
    background: var(--c-rose);
    color: #fff;
    box-shadow: 0 18px 40px -8px rgba(225, 29, 72, 0.5);
}

body.landing .form-disclaimer {
    color: rgba(255, 255, 255, 0.55);
}

body.landing .form-disclaimer strong {
    color: #fff;
}

body.landing .contact-alt {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.landing .contact-alt > p {
    color: rgba(255, 255, 255, 0.45);
}

body.landing .contact-alt-link {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.85);
}

body.landing .contact-alt-link i {
    color: rgba(255, 255, 255, 0.55);
}

body.landing .contact-alt-link:hover {
    background: #fff;
    color: var(--c-deep-navy);
    border-color: #fff;
}

body.landing .contact-alt-link:hover i {
    color: var(--c-deep-navy);
}

/* ==========================================================================
   FOOTER — keep dark from earlier, but align with charcoal
   ========================================================================== */
body.landing footer {
    background: var(--c-charcoal);
}

/* ==========================================================================
   FAQ — v2 (dark olive + 2-column editorial)
   ========================================================================== */

body.landing #faq {
    background:
        radial-gradient(ellipse 55% 45% at 15% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #2B3530 0%, #1A2420 100%);
    color: #fff;
    padding: 140px 0 !important;
    overflow: hidden;
}

body.landing #faq .container {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
}

/* Left sticky aside (section header repurposed) */
body.landing #faq .section-header {
    position: sticky;
    top: 100px;
    margin: 0;
    max-width: none;
    text-align: left;
}

body.landing #faq .section-header::before {
    content: "FAQ";
    display: block;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: #D4A574;
    margin-bottom: 24px;
    padding-left: 38px;
    position: relative;
}

body.landing #faq .section-header::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 28px;
    height: 1px;
    background: #D4A574;
}

body.landing #faq .section-header h2 {
    color: #fff;
    text-align: left;
    font-family: var(--f-display);
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin: 0 0 20px;
}

body.landing #faq .section-header p {
    color: rgba(255, 255, 255, 0.65);
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 340px;
}

/* Decorative CTA inside the aside */
body.landing #faq .section-header {
    padding-bottom: 24px;
}

body.landing #faq .section-header > p + *,
body.landing #faq .section-header > *:last-child {
    display: block;
}

body.landing #faq .section-header::marker { display: none; }

/* FAQ list — editorial */
body.landing #faq .faq-container {
    max-width: none;
    margin: 0;
    border-top: 1px solid rgba(212, 165, 116, 0.28);
}

body.landing #faq .faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    box-shadow: none;
    margin: 0;
    border-radius: 0;
}

body.landing #faq .faq-question {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    transition: color 0.2s ease;
}

body.landing #faq .faq-question h3 {
    font-family: var(--f-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.45;
    color: #fff;
    margin: 0;
    transition: color 0.2s ease;
    flex: 1;
}

body.landing #faq .faq-question:hover h3 {
    color: #D4A574;
}

body.landing #faq .faq-question .toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

body.landing #faq .faq-question .toggle-icon i {
    font-size: 0.68rem;
    transition: transform 0.3s ease;
}

body.landing #faq .faq-question:hover .toggle-icon {
    border-color: #D4A574;
    color: #D4A574;
}

body.landing #faq .faq-item.active .faq-question h3 {
    color: #D4A574;
}

body.landing #faq .faq-item.active .toggle-icon {
    background: #D4A574;
    color: #1A2420;
    border-color: #D4A574;
}

body.landing #faq .faq-item.active .toggle-icon i {
    transform: rotate(45deg);
}

body.landing #faq .faq-answer {
    padding: 0 0 32px;
    max-width: 680px;
}

body.landing #faq .faq-answer p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.78;
    margin: 0;
}

/* Responsive — collapse to single column */
@media (max-width: 992px) {
    body.landing #faq .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    body.landing #faq .section-header {
        position: relative;
        top: auto;
        padding-bottom: 0;
        margin-bottom: 8px;
    }
}

@media (max-width: 640px) {
    body.landing #faq {
        padding: 80px 0 !important;
    }

    body.landing #faq .container {
        gap: 32px;
    }

    body.landing #faq .section-header h2 {
        font-size: 1.6rem;
    }

    body.landing #faq .faq-question {
        padding: 24px 0;
        gap: 16px;
    }

    body.landing #faq .faq-question h3 {
        font-size: 1rem;
    }

    body.landing #faq .faq-answer {
        padding: 0 0 24px;
    }
}

/* ==========================================================================
   Technology — v2 (dark navy with brand-colored tech chips)
   ========================================================================== */

body.landing #technology {
    background:
        radial-gradient(ellipse 50% 45% at 85% 20%, rgba(97, 218, 251, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 15% 85%, rgba(255, 215, 106, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #13182A 0%, #0C1020 100%);
    color: #fff;
    padding: 140px 0 !important;
    overflow: hidden;
}

body.landing #technology .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
}

body.landing #technology .section-header h2 {
    color: #fff;
    font-family: var(--f-display);
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin: 0 0 16px;
}

body.landing #technology .section-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 540px;
}

/* Small eyebrow label via pseudo */
body.landing #technology .section-header::before {
    content: "TECH STACK";
    display: block;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: #61DAFB;
    margin-bottom: 22px;
}

/* 3-column glass card grid */
body.landing #technology .tech-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0;
    border: none;
}

body.landing #technology .tech-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 32px 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

body.landing #technology .tech-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
}

body.landing #technology .tech-category h3 {
    color: #fff;
    font-family: var(--f-display);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    text-transform: none;
    margin: 0 0 26px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(255, 215, 106, 0.28);
    display: flex;
    align-items: center;
    gap: 10px;
}

body.landing #technology .tech-category h3::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FFD76A;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 215, 106, 0.6);
    flex-shrink: 0;
}

body.landing #technology .tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
}

body.landing #technology .tech-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    cursor: default;
}

body.landing #technology .tech-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: translateY(-1px);
}

body.landing #technology .tech-item i {
    font-size: 1.02rem;
    transition: transform 0.2s ease;
}

body.landing #technology .tech-item:hover i {
    transform: scale(1.1);
}

body.landing #technology .tech-item span {
    font-weight: 500;
    color: inherit;
}

/* Brand-colored icons (scoped) */
body.landing #technology .tech-item .fa-android   { color: #3DDC84; }
body.landing #technology .tech-item .fa-apple     { color: #E5E7EB; }
body.landing #technology .tech-item .fa-microsoft { color: #00A4EF; }
body.landing #technology .tech-item .fa-mobile-alt{ color: #54C5F8; }
body.landing #technology .tech-item .fa-vuejs     { color: #42B883; }
body.landing #technology .tech-item .fa-react     { color: #61DAFB; }
body.landing #technology .tech-item .fa-java      { color: #EC7A00; }
body.landing #technology .tech-item .fa-node-js   { color: #8CC84B; }
body.landing #technology .tech-item .fa-html5     { color: #E34C26; }
body.landing #technology .tech-item .fa-js-square { color: #F7DF1E; }
body.landing #technology .tech-item .fa-desktop   { color: #9FEAF9; }
body.landing #technology .tech-item .fa-aws       { color: #FF9900; }
body.landing #technology .tech-item .fa-fire      { color: #FFCA28; }
body.landing #technology .tech-item .fa-google    { color: #4285F4; }

/* Responsive */
@media (max-width: 992px) {
    body.landing #technology .tech-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 640px) {
    body.landing #technology {
        padding: 80px 0 !important;
    }

    body.landing #technology .tech-category {
        padding: 28px 24px 24px;
    }

    body.landing #technology .tech-item {
        padding: 8px 12px;
        font-size: 0.84rem;
    }
}

/* ==========================================================================
   Process — v2 (warm clay bg + connected vertical timeline)
   ========================================================================== */

body.landing #process {
    background:
        radial-gradient(ellipse 50% 40% at 85% 15%, rgba(214, 132, 90, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 10% 90%, rgba(255, 215, 106, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, #EDE5D4 0%, #E3D9C3 100%);
    padding: 140px 0 !important;
    overflow: hidden;
}

body.landing #process .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
}

body.landing #process .section-header::before {
    content: "PROCESS";
    display: block;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: #D4A574;
    margin-bottom: 22px;
}

body.landing #process .section-header h2 {
    color: #1a1a1a;
    font-family: var(--f-display);
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin: 0 0 16px;
}

body.landing #process .section-header p {
    color: rgba(26, 26, 26, 0.62);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 520px;
}

/* Timeline list */
body.landing #process .process-timeline {
    display: block;
    list-style: none;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 0 0 20px;
    border: none;
    position: relative;
}

body.landing #process .process-timeline::before,
body.landing #process .process-timeline::after {
    display: none;
}

/* Connecting vertical line (behind the number badges) */
body.landing #process .process-timeline {
    position: relative;
}

body.landing #process .process-timeline::before {
    content: "";
    display: block;
    position: absolute;
    left: 46px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg,
        rgba(212, 165, 116, 0.8) 0%,
        rgba(212, 165, 116, 0.35) 50%,
        rgba(212, 165, 116, 0.1) 100%);
    z-index: 0;
}

body.landing #process .timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 28px;
    align-items: flex-start;
    padding: 24px 28px 24px 0;
    margin: 0 0 16px 0;
    background: transparent;
    border: none;
    border-bottom: none;
    width: auto;
    transition: transform 0.25s ease;
}

body.landing #process .timeline-item:hover {
    transform: translateX(6px);
}

/* Circular number badge (on the line) */
body.landing #process .timeline-number {
    position: relative;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #fff;
    color: #1a1a1a;
    font-family: var(--f-mono);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 165, 116, 0.55);
    box-shadow: 0 6px 16px rgba(212, 165, 116, 0.18);
    transition: all 0.25s ease;
    z-index: 1;
    padding: 0;
    line-height: 1;
    margin-top: 4px;
}

body.landing #process .timeline-item:hover .timeline-number {
    background: #D4A574;
    color: #fff;
    border-color: #D4A574;
    transform: scale(1.06);
    box-shadow: 0 10px 22px rgba(212, 165, 116, 0.4);
}

/* Content card */
body.landing #process .timeline-item > h3,
body.landing #process .timeline-item > p {
    grid-column: 2;
}

body.landing #process .timeline-item::after {
    content: "";
    position: absolute;
    left: 104px;
    right: 0;
    top: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: -1;
    transition: all 0.25s ease;
}

body.landing #process .timeline-item:hover::after {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(212, 165, 116, 0.5);
    box-shadow: 0 18px 34px -18px rgba(26, 26, 26, 0.18);
}

body.landing #process .timeline-item h3 {
    font-family: var(--f-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 6px 0 10px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    padding-left: 24px;
}

body.landing #process .timeline-item p {
    color: rgba(26, 26, 26, 0.68);
    font-size: 0.98rem;
    line-height: 1.72;
    margin: 0;
    max-width: 560px;
    padding-left: 24px;
    padding-bottom: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    body.landing #process .process-timeline::before {
        left: 36px;
    }

    body.landing #process .timeline-item {
        grid-template-columns: 56px 1fr;
        gap: 20px;
    }

    body.landing #process .timeline-number {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 0.82rem;
    }

    body.landing #process .timeline-item::after {
        left: 78px;
    }

    body.landing #process .timeline-item h3 {
        font-size: 1.15rem;
        padding-left: 20px;
    }

    body.landing #process .timeline-item p {
        font-size: 0.94rem;
        padding-left: 20px;
    }
}

@media (max-width: 640px) {
    body.landing #process {
        padding: 80px 0 !important;
    }

    body.landing #process .section-header {
        margin-bottom: 60px;
    }

    body.landing #process .process-timeline {
        padding-left: 0;
    }

    body.landing #process .process-timeline::before {
        left: 26px;
    }

    body.landing #process .timeline-item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding-right: 16px;
    }

    body.landing #process .timeline-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.74rem;
    }

    body.landing #process .timeline-item::after {
        left: 62px;
    }

    body.landing #process .timeline-item h3 {
        padding-left: 16px;
        font-size: 1.05rem;
    }

    body.landing #process .timeline-item p {
        padding-left: 16px;
        font-size: 0.9rem;
    }

    body.landing #process .timeline-item:hover {
        transform: none;
    }
}

/* ==========================================================================
   Process — v3 (minimal premium: dark warm charcoal + huge gradient numbers)
   Discards beige/clay. No circles, no cards, no connecting lines.
   Pure typography with hairline dividers. Studio-site aesthetic.
   ========================================================================== */

body.landing #process {
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(225, 29, 72, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 0% 100%, rgba(255, 215, 106, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, #1A181C 0%, #121012 100%) !important;
    color: #fff;
    padding: 160px 0 !important;
    overflow: hidden;
}

body.landing #process .section-header {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

body.landing #process .section-header::before {
    content: "/ PROCESS";
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 32px;
}

body.landing #process .section-header h2 {
    color: #fff;
    text-align: left;
    font-family: var(--f-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin: 0 0 20px;
    max-width: 640px;
}

body.landing #process .section-header p {
    color: rgba(255, 255, 255, 0.58);
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    max-width: 560px;
}

/* Timeline — pure vertical rows with hairline dividers, no circles */
body.landing #process .process-timeline {
    display: block;
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    border: none;
    position: relative;
}

body.landing #process .process-timeline::before,
body.landing #process .process-timeline::after {
    display: none !important;
}

body.landing #process .timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 64px;
    align-items: baseline;
    padding: 48px 0;
    margin: 0;
    width: auto;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    transition: background 0.3s ease;
}

body.landing #process .timeline-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.landing #process .timeline-item:hover {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.025) 0%,
        transparent 70%);
    transform: none;
}

body.landing #process .timeline-item:hover::after {
    display: none;
}

/* No card bg behind content */
body.landing #process .timeline-item::after {
    display: none !important;
}

/* Giant gradient number */
body.landing #process .timeline-number {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    font-family: var(--f-display);
    font-size: clamp(3rem, 5.5vw, 4.6rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.9;
    color: transparent;
    background-image: linear-gradient(135deg,
        #FF8A5C 0%,
        #E11D48 45%,
        #A8274F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease, filter 0.3s ease;
    margin: 0;
}

body.landing #process .timeline-item:hover .timeline-number {
    transform: translateX(4px);
    filter: brightness(1.15) saturate(1.1);
}

/* Right side content */
body.landing #process .timeline-item h3 {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.3;
    margin: 0 0 14px;
    padding: 0;
    max-width: 620px;
}

body.landing #process .timeline-item p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.02rem;
    line-height: 1.72;
    margin: 0;
    padding: 0;
    max-width: 580px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    body.landing #process {
        padding: 120px 0 !important;
    }

    body.landing #process .section-header {
        margin-bottom: 72px;
    }

    body.landing #process .timeline-item {
        grid-template-columns: 140px 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    body.landing #process .timeline-item h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    body.landing #process {
        padding: 80px 0 !important;
    }

    body.landing #process .section-header {
        margin-bottom: 48px;
    }

    body.landing #process .timeline-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 32px 0;
    }

    body.landing #process .timeline-number {
        font-size: 2.8rem;
    }

    body.landing #process .timeline-item h3 {
        font-size: 1.15rem;
    }

    body.landing #process .timeline-item p {
        font-size: 0.95rem;
    }

    body.landing #process .timeline-item:hover {
        background: transparent;
    }

    body.landing #process .timeline-item:hover .timeline-number {
        transform: none;
    }
}

/* ==========================================================================
   Process — v4 (readability-first, keeps dark charcoal bg)
   ========================================================================== */

body.landing #process .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 90px;
    padding: 0 20px;
}

body.landing #process .section-header::before {
    content: "PROCESS";
    display: block;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: #E11D48;
    margin-bottom: 22px;
}

body.landing #process .section-header h2 {
    text-align: center;
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    max-width: none;
    margin: 0 0 16px;
}

body.landing #process .section-header p {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.02rem;
}

/* Horizontal 5-column grid (auto-fit for flex responsiveness) */
body.landing #process .process-timeline {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
    border: none !important;
    list-style: none !important;
    position: static !important;
}

body.landing #process .process-timeline::before,
body.landing #process .process-timeline::after {
    display: none !important;
    content: none !important;
}

/* Each step: clean vertical column, separated by top accent line */
body.landing #process .timeline-item {
    position: relative !important;
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 28px 0 0 !important;
    margin: 0 !important;
    width: auto !important;
    background: transparent !important;
    border: none !important;
    border-top: 2px solid rgba(225, 29, 72, 0.55) !important;
    border-bottom: none !important;
    transition: border-top-color 0.2s ease !important;
    transform: none !important;
}

body.landing #process .timeline-item:hover {
    border-top-color: #E11D48 !important;
    background: transparent !important;
    transform: none !important;
}

body.landing #process .timeline-item:hover .timeline-number {
    transform: none !important;
    filter: none !important;
}

/* Kill the ::after card background from v3 */
body.landing #process .timeline-item::after {
    display: none !important;
    content: none !important;
}

/* STEP label — small mono with prefix */
body.landing #process .timeline-number {
    display: block !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 0 18px !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    background-image: none !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-family: var(--f-mono) !important;
    font-size: 0.76rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.2em !important;
    line-height: 1 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-transform: uppercase !important;
    max-width: none !important;
}

body.landing #process .timeline-number::before {
    content: "STEP ";
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    margin-right: 2px;
}

/* Title — clear, bold, readable */
body.landing #process .timeline-item h3 {
    font-family: var(--f-display) !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: -0.022em !important;
    line-height: 1.3 !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    max-width: none !important;
}

/* Description — high-contrast body text */
body.landing #process .timeline-item p {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    font-weight: 400 !important;
}

/* Responsive */
@media (max-width: 1100px) {
    body.landing #process .process-timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 48px !important;
    }
}

@media (max-width: 720px) {
    body.landing #process .process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 40px !important;
    }
}

@media (max-width: 480px) {
    body.landing #process .process-timeline {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
        padding: 0 20px !important;
    }

    body.landing #process .section-header {
        margin-bottom: 56px;
    }

    body.landing #process .timeline-item h3 {
        font-size: 1.2rem !important;
    }
}

/* ==========================================================================
   Process — v5
   1) Kill all hover movement (no sideways slide)
   2) Staggered fade-in reveal when section enters viewport
   ========================================================================== */

/* Neutralize any leftover hover transforms/filters */
body.landing #process .timeline-item,
body.landing #process .timeline-item:hover,
body.landing #process .timeline-item .timeline-number,
body.landing #process .timeline-item:hover .timeline-number,
body.landing #process .timeline-item h3,
body.landing #process .timeline-item:hover h3,
body.landing #process .timeline-item p,
body.landing #process .timeline-item:hover p {
    transform: none !important;
    filter: none !important;
}

/* Hover only changes the top accent color, no motion */
body.landing #process .timeline-item {
    transition: border-top-color 0.2s ease, opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

body.landing #process .timeline-item:hover {
    border-top-color: #E11D48 !important;
    background: transparent !important;
}

/* Initial hidden state for entrance */
body.landing #process .timeline-item {
    opacity: 0;
}

/* Once #process enters the viewport, reveal items sequentially */
body.landing #process.in-view .timeline-item {
    opacity: 1;
}

body.landing #process.in-view .timeline-item:nth-child(1) { transition-delay: 0.08s; }
body.landing #process.in-view .timeline-item:nth-child(2) { transition-delay: 0.22s; }
body.landing #process.in-view .timeline-item:nth-child(3) { transition-delay: 0.36s; }
body.landing #process.in-view .timeline-item:nth-child(4) { transition-delay: 0.50s; }
body.landing #process.in-view .timeline-item:nth-child(5) { transition-delay: 0.64s; }

/* Reduced motion — show immediately, no stagger */
@media (prefers-reduced-motion: reduce) {
    body.landing #process .timeline-item,
    body.landing #process.in-view .timeline-item {
        opacity: 1 !important;
        transition: none !important;
    }
}

/* ==========================================================================
   Process — v6 layout fix: flex w/ center alignment so rows never drift
   ========================================================================== */

body.landing #process .process-timeline {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 40px 32px !important;
    grid-template-columns: none !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
    border: none !important;
    list-style: none !important;
}

body.landing #process .timeline-item {
    flex: 0 0 200px !important;
    width: 200px !important;
    min-width: 0 !important;
    max-width: none !important;
}

@media (max-width: 640px) {
    body.landing #process .timeline-item {
        flex: 0 0 240px !important;
        width: 240px !important;
    }
}

@media (max-width: 420px) {
    body.landing #process .timeline-item {
        flex: 0 0 100% !important;
        width: 100% !important;
    }
}

/* ==========================================================================
   Process — v7 FIX: simple equal-fraction grid, always centered, no wrap weirdness
   ========================================================================== */
body.landing #process .process-timeline {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 28px !important;
    max-width: 1120px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    justify-content: stretch !important;
    align-items: flex-start !important;
    border: none !important;
    list-style: none !important;
    width: 100% !important;
}

body.landing #process .timeline-item {
    flex: none !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
}

@media (max-width: 640px) {
    body.landing #process .process-timeline {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
        max-width: 420px !important;
    }
}

/* ==========================================================================
   Process — v8 FIX: reset inherited absolute positioning on .timeline-number
   (original style.css had position:absolute;left:50%;translateX(-50%) for a
    circle badge, but our layout just needs a plain inline label)
   ========================================================================== */
body.landing #process .timeline-number {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    text-align: left !important;
}

/* ==========================================================================
   Process — v9 FIX: center align STEP label and content inside each item
   ========================================================================== */
body.landing #process .timeline-item {
    text-align: center !important;
}

body.landing #process .timeline-number,
body.landing #process .timeline-item h3,
body.landing #process .timeline-item p {
    text-align: center !important;
}

body.landing #process .timeline-item p {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ==========================================================================
   Services — v2 (soft lavender bg + gradient icon badges per service)
   ========================================================================== */

body.landing #services {
    background:
        radial-gradient(ellipse 55% 45% at 85% 15%, rgba(168, 122, 223, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 10% 90%, rgba(255, 133, 162, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #F4F0F9 0%, #EBE4F3 100%) !important;
    padding: 140px 0 !important;
    overflow: hidden;
}

body.landing #services .section-header {
    text-align: center !important;
    max-width: 680px;
    margin: 0 auto 80px;
}

body.landing #services .section-header::before {
    content: "SERVICES";
    display: block;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: #8B5CF6;
    margin-bottom: 22px;
}

body.landing #services .section-header h2 {
    color: #1a1a1a;
    text-align: center !important;
    font-family: var(--f-display);
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin: 0 0 16px;
    max-width: none !important;
}

body.landing #services .section-header p {
    color: rgba(26, 26, 26, 0.62);
    text-align: center !important;
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 520px;
}

/* 2×2 grid with breathing room */
body.landing #services .services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px !important;
    max-width: 1040px !important;
    margin: 0 auto !important;
    border: none !important;
}

body.landing #services .service-card {
    background: #ffffff !important;
    border: 1px solid rgba(139, 92, 246, 0.12) !important;
    border-radius: 20px !important;
    padding: 40px 36px !important;
    box-shadow: 0 4px 18px -8px rgba(79, 58, 140, 0.08) !important;
    text-align: left !important;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

body.landing #services .service-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 24px 48px -16px rgba(79, 58, 140, 0.22) !important;
    border-color: rgba(139, 92, 246, 0.28) !important;
    background: #ffffff !important;
}

/* Gradient icon badge */
body.landing #services .service-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px;
    width: 64px !important;
    height: 64px !important;
    margin: 0 0 26px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #A78BFA 0%, #EC4899 100%);
    color: #ffffff !important;
    font-size: 1.6rem !important;
    box-shadow: 0 10px 22px -6px rgba(167, 139, 250, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.landing #services .service-card:hover .service-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 16px 30px -8px rgba(167, 139, 250, 0.6);
}

body.landing #services .service-icon i {
    color: #ffffff !important;
    font-size: 1.4rem;
    width: auto;
    height: auto;
    line-height: 1;
}

/* Per-card gradient themes */
body.landing #services .service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #34D399 0%, #3B82F6 100%);
    box-shadow: 0 10px 22px -6px rgba(52, 211, 153, 0.5);
}

body.landing #services .service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #38BDF8 0%, #6366F1 100%);
    box-shadow: 0 10px 22px -6px rgba(56, 189, 248, 0.5);
}

body.landing #services .service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    box-shadow: 0 10px 22px -6px rgba(168, 85, 247, 0.5);
}

body.landing #services .service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
    box-shadow: 0 10px 22px -6px rgba(251, 191, 36, 0.5);
}

/* Subtle corner accent that glows on hover */
body.landing #services .service-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.14) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

body.landing #services .service-card:hover::before {
    opacity: 1;
}

body.landing #services .service-card h3 {
    font-family: var(--f-display) !important;
    font-size: 1.32rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    letter-spacing: -0.022em !important;
    line-height: 1.3 !important;
    margin: 0 0 12px !important;
}

body.landing #services .service-card p {
    color: rgba(26, 26, 26, 0.68) !important;
    font-size: 0.96rem !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* Responsive */
@media (max-width: 820px) {
    body.landing #services {
        padding: 100px 0 !important;
    }

    body.landing #services .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 520px !important;
    }

    body.landing #services .service-card {
        padding: 32px 28px !important;
    }
}

@media (max-width: 480px) {
    body.landing #services {
        padding: 80px 0 !important;
    }

    body.landing #services .section-header {
        margin-bottom: 56px;
    }

    body.landing #services .service-icon {
        width: 54px !important;
        height: 54px !important;
        margin-bottom: 22px !important;
    }

    body.landing #services .service-card h3 {
        font-size: 1.2rem !important;
    }
}

/* ==========================================================================
   Services — v3 (deep plum dark bg, glass cards, gradient icons pop)
   ========================================================================== */

body.landing #services {
    background:
        radial-gradient(ellipse 55% 45% at 85% 15%, rgba(167, 139, 250, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 10% 90%, rgba(236, 72, 153, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #1E1635 0%, #120C22 100%) !important;
    color: #fff;
}

body.landing #services .section-header::before {
    color: #C4B5FD !important;
}

body.landing #services .section-header h2 {
    color: #fff !important;
}

body.landing #services .section-header p {
    color: rgba(255, 255, 255, 0.65) !important;
}

/* Glass cards on dark */
body.landing #services .service-card {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body.landing #services .service-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(167, 139, 250, 0.35) !important;
    box-shadow: 0 24px 48px -16px rgba(167, 139, 250, 0.3) !important;
    transform: translateY(-6px) !important;
}

/* Card corner glow */
body.landing #services .service-card::before {
    background: radial-gradient(circle, rgba(167, 139, 250, 0.2) 0%, transparent 70%) !important;
}

/* Typography — light text */
body.landing #services .service-card h3 {
    color: #fff !important;
}

body.landing #services .service-card p {
    color: rgba(255, 255, 255, 0.68) !important;
}

/* Icon badges — make them glow stronger on dark */
body.landing #services .service-card:nth-child(1) .service-icon {
    box-shadow: 0 14px 30px -8px rgba(52, 211, 153, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

body.landing #services .service-card:nth-child(2) .service-icon {
    box-shadow: 0 14px 30px -8px rgba(56, 189, 248, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

body.landing #services .service-card:nth-child(3) .service-icon {
    box-shadow: 0 14px 30px -8px rgba(168, 85, 247, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

body.landing #services .service-card:nth-child(4) .service-icon {
    box-shadow: 0 14px 30px -8px rgba(251, 191, 36, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* ==========================================================================
   Services — stack tag chips (replaces icon badge)
   ========================================================================== */
body.landing #services .service-icon {
    display: none !important;
}

body.landing #services .service-stack {
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 24px !important;
}

body.landing #services .stack-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1;
}

body.landing #services .stack-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff;
}

/* Primary tag per service — themed gradient accent */
body.landing #services .service-card:nth-child(1) .stack-tag:first-child {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.22) 0%, rgba(59, 130, 246, 0.22) 100%);
    border-color: rgba(110, 231, 183, 0.45);
    color: #A7F3D0;
}

body.landing #services .service-card:nth-child(2) .stack-tag:first-child {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.22) 0%, rgba(99, 102, 241, 0.22) 100%);
    border-color: rgba(147, 197, 253, 0.45);
    color: #BAE6FD;
}

body.landing #services .service-card:nth-child(3) .stack-tag:first-child {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.22) 0%, rgba(236, 72, 153, 0.22) 100%);
    border-color: rgba(216, 180, 254, 0.45);
    color: #E9D5FF;
}

body.landing #services .service-card:nth-child(4) .stack-tag:first-child {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.22) 0%, rgba(249, 115, 22, 0.22) 100%);
    border-color: rgba(252, 211, 77, 0.45);
    color: #FDE68A;
}

/* ==========================================================================
   Services — stack tag vertical alignment fix
   ========================================================================== */
body.landing #services .service-stack {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0 0 24px !important;
}

body.landing #services .stack-tag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 28px !important;
    padding: 0 12px !important;
    line-height: 1 !important;
    box-sizing: border-box;
    white-space: nowrap;
    vertical-align: middle;
}

/* ==========================================================================
   Services — stack tag final alignment fix (line-height = height trick)
   ========================================================================== */
body.landing #services .stack-tag {
    display: inline-block !important;
    height: 28px !important;
    padding: 0 12px !important;
    line-height: 26px !important;
    font-family: var(--f-body) !important;
    font-size: 0.74rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    text-align: center !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
}

body.landing #services .service-stack {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 0 0 24px !important;
}

/* ==========================================================================
   Services — unify tag color per service (all chips get theme color)
   ========================================================================== */
/* 1. 네이티브 앱 — 에메랄드 → 블루 */
body.landing #services .service-card:nth-child(1) .stack-tag {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.18) 0%, rgba(59, 130, 246, 0.18) 100%) !important;
    border-color: rgba(110, 231, 183, 0.38) !important;
    color: #A7F3D0 !important;
}

/* 2. Flutter — 스카이 → 인디고 */
body.landing #services .service-card:nth-child(2) .stack-tag {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.18) 0%, rgba(99, 102, 241, 0.18) 100%) !important;
    border-color: rgba(147, 197, 253, 0.38) !important;
    color: #BAE6FD !important;
}

/* 3. 웹솔루션 — 퍼플 → 핑크 */
body.landing #services .service-card:nth-child(3) .stack-tag {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18) 0%, rgba(236, 72, 153, 0.18) 100%) !important;
    border-color: rgba(216, 180, 254, 0.38) !important;
    color: #E9D5FF !important;
}

/* 4. 클라우드 — 앰버 → 오렌지 */
body.landing #services .service-card:nth-child(4) .stack-tag {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.18) 0%, rgba(249, 115, 22, 0.18) 100%) !important;
    border-color: rgba(252, 211, 77, 0.38) !important;
    color: #FDE68A !important;
}

/* Hover — brighten within the same theme */
body.landing #services .service-card:nth-child(1) .stack-tag:hover { color: #D1FAE5 !important; border-color: rgba(110, 231, 183, 0.65) !important; }
body.landing #services .service-card:nth-child(2) .stack-tag:hover { color: #DBEAFE !important; border-color: rgba(147, 197, 253, 0.65) !important; }
body.landing #services .service-card:nth-child(3) .stack-tag:hover { color: #F3E8FF !important; border-color: rgba(216, 180, 254, 0.65) !important; }
body.landing #services .service-card:nth-child(4) .stack-tag:hover { color: #FEF3C7 !important; border-color: rgba(252, 211, 77, 0.65) !important; }

/* ==========================================================================
   Difference — v2 (Deep teal dark bg + glass cards + gradient icon badges)
   ========================================================================== */

body.landing #difference {
    background:
        radial-gradient(ellipse 55% 45% at 85% 15%, rgba(45, 212, 191, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 10% 90%, rgba(56, 189, 248, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #0E3A36 0%, #062421 100%) !important;
    color: #fff;
    padding: 140px 0 !important;
    overflow: hidden;
}

body.landing #difference .section-header {
    text-align: center !important;
    max-width: 680px;
    margin: 0 auto 80px;
}

body.landing #difference .section-header::before {
    content: "WHY DIFFERENT";
    display: block;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: #5EEAD4;
    margin-bottom: 22px;
}

body.landing #difference .section-header h2 {
    color: #fff !important;
    text-align: center !important;
    font-family: var(--f-display);
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.18;
    margin: 0 0 16px;
    max-width: none !important;
}

body.landing #difference .section-header p {
    color: rgba(255, 255, 255, 0.68) !important;
    text-align: center !important;
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 540px;
}

/* 3x2 glass-card grid */
body.landing #difference .difference-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    border: none !important;
    counter-reset: diff-counter;
    padding: 0 !important;
}

body.landing #difference .difference-item {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 36px 30px !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease,
                background 0.3s ease,
                box-shadow 0.3s ease !important;
    text-align: left !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.4);
}

body.landing #difference .difference-item:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(45, 212, 191, 0.38) !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 24px 48px -16px rgba(45, 212, 191, 0.3) !important;
}

/* Number counter (top-left) */
body.landing #difference .difference-item::before {
    content: "0" counter(diff-counter);
    counter-increment: diff-counter;
    display: block;
    font-family: var(--f-mono);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #5EEAD4;
    margin: 0 0 22px 0;
    opacity: 0.85;
    border-bottom: none !important;
    border-right: none !important;
}

/* Corner glow on hover */
body.landing #difference .difference-item::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.22) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    border: none !important;
}

body.landing #difference .difference-item:hover::after {
    opacity: 1;
}

/* Gradient icon badge (reuse .difference-icon) */
body.landing #difference .difference-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 52px !important;
    height: 52px !important;
    margin: 0 0 22px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%) !important;
    color: #fff !important;
    box-shadow: 0 10px 22px -6px rgba(16, 185, 129, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.landing #difference .difference-item:hover .difference-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 14px 28px -8px rgba(45, 212, 191, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

body.landing #difference .difference-icon i {
    color: #fff !important;
    font-size: 1.25rem;
}

/* Title & description */
body.landing #difference .difference-item h3 {
    font-family: var(--f-display) !important;
    font-size: 1.22rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: -0.022em !important;
    line-height: 1.35 !important;
    margin: 0 0 12px !important;
}

body.landing #difference .difference-item p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.96rem !important;
    line-height: 1.72 !important;
    margin: 0 !important;
}

/* Story CTA (bottom) — stay consistent with dark theme */
body.landing #difference .story-cta-section {
    margin-top: 72px !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-align: center !important;
}

body.landing #difference .story-cta-content {
    background: transparent !important;
    padding: 0 !important;
}

body.landing #difference .story-cta-content h3 {
    font-family: var(--f-display) !important;
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
    margin-bottom: 18px !important;
    letter-spacing: -0.01em !important;
}

body.landing #difference .btn-story-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 14px 28px !important;
    background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.96rem !important;
    letter-spacing: -0.005em !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    border: none !important;
    box-shadow: 0 12px 28px -8px rgba(16, 185, 129, 0.45) !important;
}

body.landing #difference .btn-story-cta::after {
    content: "→";
    transition: transform 0.2s ease;
}

body.landing #difference .btn-story-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 18px 36px -10px rgba(45, 212, 191, 0.6) !important;
    color: #fff !important;
}

body.landing #difference .btn-story-cta:hover::after {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
    body.landing #difference {
        padding: 100px 0 !important;
    }

    body.landing #difference .difference-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    body.landing #difference .difference-item {
        padding: 32px 26px !important;
    }
}

@media (max-width: 560px) {
    body.landing #difference {
        padding: 80px 0 !important;
    }

    body.landing #difference .difference-container {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        max-width: 440px !important;
    }

    body.landing #difference .difference-icon {
        width: 46px !important;
        height: 46px !important;
        margin-bottom: 18px !important;
    }

    body.landing #difference .difference-item h3 {
        font-size: 1.12rem !important;
    }
}

/* ==========================================================================
   Difference — story-cta-section polish (glass card with visible rounding)
   ========================================================================== */
body.landing #difference .story-cta-section {
    margin: 72px auto 0 !important;
    padding: 40px 48px !important;
    max-width: 720px !important;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(45, 212, 191, 0.1) 0%, transparent 60%),
        rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 14px 36px -18px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(45, 212, 191, 0.08) inset !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center !important;
    position: relative;
    overflow: hidden;
}

body.landing #difference .story-cta-content {
    background: transparent !important;
    padding: 0 !important;
    position: relative;
    z-index: 1;
}

body.landing #difference .story-cta-content h3 {
    font-size: 1.18rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 22px !important;
}

@media (max-width: 560px) {
    body.landing #difference .story-cta-section {
        padding: 32px 24px !important;
        border-radius: 16px !important;
    }

    body.landing #difference .story-cta-content h3 {
        font-size: 1rem !important;
    }
}

/* ==========================================================================
   Difference — nuke inherited inner box from style.css .story-cta-content
   ========================================================================== */
body.landing #difference .story-cta-content {
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    max-width: none !important;
    margin: 0 !important;
    color: inherit !important;
}

body.landing #difference .story-cta-content p {
    display: none !important;
}

/* ==========================================================================
   Trust Bar — dark theme (follows hero) + clean number typography
   ========================================================================== */
body.landing .trust-bar {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 215, 106, 0.05) 0%, transparent 55%),
        linear-gradient(180deg, #070B1E 0%, #050816 100%) !important;
    color: #fff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 60px 0 !important;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

body.landing .trust-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;
}

body.landing .trust-item {
    border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 10px 24px !important;
    text-align: center !important;
    transition: background 0.3s ease;
}

body.landing .trust-item:first-child {
    border-left: none !important;
}

body.landing .trust-item:hover {
    background: rgba(255, 215, 106, 0.03);
}

body.landing .trust-num {
    color: #fff !important;
    font-family: var(--f-display) !important;
    font-size: clamp(2.4rem, 4vw, 3.4rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 1 !important;
    margin: 0 0 14px !important;
}

body.landing .trust-unit {
    display: inline !important;
    color: #FFD76A !important;
    -webkit-text-fill-color: #FFD76A !important;
    background: none !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    margin-left: 3px !important;
    letter-spacing: 0 !important;
}

body.landing .trust-label {
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
    line-height: 1.5 !important;
}

@media (max-width: 640px) {
    body.landing .trust-bar {
        padding: 44px 0 !important;
    }

    body.landing .trust-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px 0 !important;
    }

    body.landing .trust-item {
        border-left: none !important;
    }

    body.landing .trust-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    body.landing .trust-num {
        font-size: 2.2rem !important;
    }
}

/* ==========================================================================
   Trust Bar — readability pass + mobile height unification
   ========================================================================== */

/* Each item becomes a flex column so mixed label lengths still align cleanly */
body.landing .trust-item {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 140px !important;
    padding: 10px 20px !important;
}

/* Readability: larger number, stronger label */
body.landing .trust-num {
    font-size: clamp(2.6rem, 4.4vw, 3.8rem) !important;
    line-height: 1 !important;
    margin: 0 0 16px !important;
    font-weight: 800 !important;
    letter-spacing: -0.045em !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

body.landing .trust-unit {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #FFD76A !important;
    -webkit-text-fill-color: #FFD76A !important;
    margin-left: 4px !important;
}

body.landing .trust-label {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.94rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.015em !important;
    line-height: 1.45 !important;
    max-width: 180px;
}

/* Mobile: switch to gap-based separation, kill the uneven border-right */
@media (max-width: 640px) {
    body.landing .trust-bar {
        padding: 36px 0 !important;
    }

    body.landing .trust-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 18px 10px !important;
    }

    body.landing .trust-item {
        border: none !important;
        border-left: none !important;
        border-right: none !important;
        min-height: 118px !important;
        padding: 12px 8px !important;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
    }

    body.landing .trust-item:hover {
        background: rgba(255, 215, 106, 0.06);
    }

    body.landing .trust-num {
        font-size: 2.2rem !important;
        margin-bottom: 10px !important;
    }

    body.landing .trust-unit {
        font-size: 1.05rem !important;
    }

    body.landing .trust-label {
        font-size: 0.82rem !important;
    }
}

/* ==========================================================================
   Trust Bar — per-item gradient numbers + neon glow for visual impact
   ========================================================================== */

/* Background with subtle 4-color accent zones */
body.landing .trust-bar {
    background:
        radial-gradient(ellipse 28% 60% at 12% 50%, rgba(52, 211, 153, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 28% 60% at 38% 50%, rgba(167, 139, 250, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 28% 60% at 62% 50%, rgba(251, 113, 133, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 28% 60% at 88% 50%, rgba(251, 191, 36, 0.10) 0%, transparent 60%),
        linear-gradient(180deg, #070B1E 0%, #050816 100%) !important;
}

/* Shared: clipped gradient text + neon drop-shadow */
body.landing .trust-num {
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-shadow: none !important;
}

/* 1. 50% AI 절감 — emerald → cyan */
body.landing .trust-item:nth-child(1) .trust-num {
    background-image: linear-gradient(135deg, #6EE7B7 0%, #22D3EE 100%) !important;
    filter: drop-shadow(0 0 20px rgba(52, 211, 153, 0.4))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
body.landing .trust-item:nth-child(1) .trust-unit {
    color: #6EE7B7 !important;
    -webkit-text-fill-color: #6EE7B7 !important;
    background: none !important;
    filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.5));
}

/* 2. 20년 경력 — purple → blue */
body.landing .trust-item:nth-child(2) .trust-num {
    background-image: linear-gradient(135deg, #C4B5FD 0%, #60A5FA 100%) !important;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.4))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
body.landing .trust-item:nth-child(2) .trust-unit {
    color: #C4B5FD !important;
    -webkit-text-fill-color: #C4B5FD !important;
    background: none !important;
    filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.5));
}

/* 3. 0건 납기 미준수 — rose → orange */
body.landing .trust-item:nth-child(3) .trust-num {
    background-image: linear-gradient(135deg, #FDA4AF 0%, #FB923C 100%) !important;
    filter: drop-shadow(0 0 20px rgba(251, 113, 133, 0.4))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
body.landing .trust-item:nth-child(3) .trust-unit {
    color: #FDA4AF !important;
    -webkit-text-fill-color: #FDA4AF !important;
    background: none !important;
    filter: drop-shadow(0 0 8px rgba(251, 113, 133, 0.5));
}

/* 4. 6년 파트너십 — gold → amber */
body.landing .trust-item:nth-child(4) .trust-num {
    background-image: linear-gradient(135deg, #FDE68A 0%, #F59E0B 100%) !important;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.45))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
body.landing .trust-item:nth-child(4) .trust-unit {
    color: #FDE68A !important;
    -webkit-text-fill-color: #FDE68A !important;
    background: none !important;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.55));
}

/* Label gets a slightly brighter fg for contrast against colorful numbers */
body.landing .trust-label {
    color: rgba(255, 255, 255, 0.82) !important;
}

/* ==========================================================================
   Why — v2 (deep midnight bg, cyan·purple accents for AI+human theme)
   ========================================================================== */

body.landing #why {
    background:
        radial-gradient(ellipse 55% 45% at 85% 15%, rgba(56, 189, 248, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 10% 90%, rgba(167, 139, 250, 0.10) 0%, transparent 55%),
        linear-gradient(180deg, #0F1829 0%, #070B17 100%) !important;
    color: #fff !important;
    padding: 160px 0 !important;
    overflow: hidden;
}

/* Eyebrow */
body.landing #why .eyebrow {
    color: #67E8F9 !important;
}

body.landing #why .eyebrow::before {
    background: #67E8F9 !important;
}

/* Main headline */
body.landing .why-intro h2 {
    color: #fff !important;
    font-size: clamp(2.2rem, 5vw, 3.4rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em !important;
}

body.landing .why-intro h2 em {
    font-style: normal !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    background-image: linear-gradient(135deg, #67E8F9 0%, #C4B5FD 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    filter: drop-shadow(0 0 20px rgba(103, 232, 249, 0.35));
    position: relative;
    display: inline-block;
}

body.landing .why-intro h2 em::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 12px;
    background: linear-gradient(90deg, rgba(103, 232, 249, 0.25) 0%, rgba(196, 181, 253, 0.25) 100%) !important;
    z-index: -1;
}

/* Lead paragraph */
body.landing .why-lead {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 1.18rem !important;
    line-height: 1.78 !important;
    max-width: 720px !important;
}

body.landing .why-lead strong {
    color: #fff !important;
    font-weight: 700 !important;
}

/* 3-step list */
body.landing .why-steps {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    list-style: none !important;
    padding: 0 !important;
    counter-reset: whystep;
}

body.landing .why-steps li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 44px 0 !important;
    display: grid !important;
    grid-template-columns: 120px 1fr !important;
    gap: 48px !important;
    align-items: start !important;
    transition: background 0.3s ease;
    counter-increment: whystep;
}

body.landing .why-steps li:hover {
    background: linear-gradient(90deg, rgba(103, 232, 249, 0.04) 0%, transparent 60%);
}

/* Gradient step number */
body.landing .why-step-num {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    background-image: linear-gradient(135deg, #67E8F9 0%, #A78BFA 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    font-family: var(--f-display) !important;
    font-size: 2.4rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 1 !important;
    padding-top: 4px !important;
    filter: drop-shadow(0 0 16px rgba(103, 232, 249, 0.35));
}

body.landing .why-step-body h3 {
    color: #fff !important;
    font-size: 1.55rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.3 !important;
    margin: 0 0 14px !important;
}

body.landing .why-step-body p {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 1.06rem !important;
    line-height: 1.76 !important;
    margin: 0 !important;
    max-width: 620px !important;
}

/* Quote card — glass effect */
body.landing .why-quote {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(103, 232, 249, 0.06) 0%, transparent 55%),
        rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-left: 3px solid #67E8F9 !important;
    border-radius: 0 14px 14px 0 !important;
    padding: 40px 44px !important;
    max-width: 820px !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px -16px rgba(103, 232, 249, 0.2);
    margin-top: 20px !important;
}

body.landing .why-quote p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-family: var(--f-display) !important;
    font-size: 1.35rem !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 20px !important;
}

body.landing .why-quote p em {
    color: #67E8F9 !important;
    font-style: italic !important;
    font-weight: 600 !important;
    background: linear-gradient(180deg, transparent 60%, rgba(103, 232, 249, 0.15) 60%) !important;
    padding: 0 2px !important;
}

body.landing .why-quote footer {
    color: rgba(255, 255, 255, 0.55) !important;
    font-family: var(--f-mono) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

/* Responsive */
@media (max-width: 720px) {
    body.landing #why {
        padding: 100px 0 !important;
    }

    body.landing .why-steps li {
        grid-template-columns: 60px 1fr !important;
        gap: 20px !important;
        padding: 36px 0 !important;
    }

    body.landing .why-step-num {
        font-size: 1.8rem !important;
    }

    body.landing .why-step-body h3 {
        font-size: 1.3rem !important;
    }

    body.landing .why-quote {
        padding: 28px 24px !important;
    }

    body.landing .why-quote p {
        font-size: 1.15rem !important;
    }
}

/* ==========================================================================
   Why — result block with headline-grade 50% discount badge
   ========================================================================== */
body.landing .why-result {
    margin-top: 100px;
    text-align: center;
    position: relative;
}

body.landing .why-result-lead {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.78) !important;
    line-height: 1.75 !important;
    max-width: 680px;
    margin: 0 auto 56px !important;
}

body.landing .why-result-lead strong {
    color: #fff;
    font-weight: 700;
}

body.landing .why-result-badge {
    display: inline-block;
    position: relative;
    padding: 52px 76px 48px;
    border-radius: 28px;
    background:
        radial-gradient(ellipse 70% 70% at 50% 40%, rgba(103, 232, 249, 0.14) 0%, transparent 65%),
        radial-gradient(ellipse 60% 60% at 70% 80%, rgba(167, 139, 250, 0.1) 0%, transparent 65%),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(103, 232, 249, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 30px 80px -30px rgba(103, 232, 249, 0.35),
        0 0 0 1px rgba(167, 139, 250, 0.08) inset;
    overflow: hidden;
}

body.landing .why-result-badge::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%,
        transparent 0deg,
        rgba(103, 232, 249, 0.08) 60deg,
        transparent 120deg,
        rgba(167, 139, 250, 0.08) 240deg,
        transparent 360deg);
    animation: badgeGlow 8s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes badgeGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

body.landing .why-discount-label {
    display: block;
    position: relative;
    z-index: 1;
    font-family: var(--f-mono);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    color: #67E8F9;
    margin-bottom: 18px;
    text-transform: uppercase;
}

body.landing .why-discount-value {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    position: relative;
    z-index: 1;
    line-height: 1;
}

body.landing .why-discount-num {
    font-family: var(--f-display);
    font-size: clamp(4.5rem, 10vw, 7.2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, #67E8F9 0%, #A78BFA 50%, #F0ABFC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(103, 232, 249, 0.5))
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    padding-right: 4px;
}

body.landing .why-discount-unit {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 4.4vw, 3.2rem);
    font-weight: 800;
    color: #67E8F9;
    margin-left: 14px;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 0 20px rgba(103, 232, 249, 0.55));
}

body.landing .why-discount-sub {
    display: block;
    position: relative;
    z-index: 1;
    margin-top: 22px;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    letter-spacing: -0.005em;
}

/* Responsive */
@media (max-width: 640px) {
    body.landing .why-result {
        margin-top: 72px;
    }

    body.landing .why-result-lead {
        font-size: 1rem !important;
        margin-bottom: 40px !important;
    }

    body.landing .why-result-badge {
        padding: 40px 32px 36px;
        border-radius: 20px;
        width: 100%;
        max-width: 360px;
    }

    body.landing .why-discount-label {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
        margin-bottom: 14px;
    }

    body.landing .why-discount-num {
        font-size: 5.2rem;
    }

    body.landing .why-discount-unit {
        font-size: 2.2rem;
        margin-left: 6px;
    }

    body.landing .why-discount-sub {
        font-size: 0.92rem;
        margin-top: 16px;
    }
}

/* ==========================================================================
   Testimonials — reduce top padding (esp. on mobile)
   ========================================================================== */
body.landing #testimonials {
    padding: 96px 0 120px !important;
}

body.landing #testimonials .section-header {
    margin: 0 auto 56px !important;
}

@media (max-width: 640px) {
    body.landing #testimonials {
        padding: 56px 0 80px !important;
    }

    body.landing #testimonials .section-header {
        margin: 0 auto 32px !important;
    }

    body.landing #testimonials .section-header h2 {
        font-size: 1.7rem !important;
    }

    body.landing #testimonials .section-header p {
        font-size: 0.95rem !important;
    }

    body.landing #testimonials .testimonial-slider {
        height: auto !important;
        min-height: 380px !important;
    }

    body.landing #testimonials .testimonial-slide {
        position: absolute !important;
        inset: 0 !important;
        height: 100% !important;
    }

    body.landing #testimonials .testimonial-content {
        justify-content: center !important;
    }

    body.landing #testimonials .testimonial-content p {
        font-size: 1.02rem !important;
        line-height: 1.55 !important;
        padding: 0 8px !important;
    }

    body.landing #testimonials .testimonial-controls {
        margin-top: 36px !important;
    }
}

/* ==========================================================================
   Phone tag — convert from pill chip to readable description line
   ========================================================================== */
body.landing .phone-tag {
    display: block !important;
    font-family: var(--f-body) !important;
    font-size: 0.76rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: var(--screen-fg, #0a0a0a) !important;
    opacity: 0.72;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    max-width: 100% !important;
    margin-top: 4px;
}

/* Slightly more room in the info area for multi-line descriptions */
body.landing .phone-info {
    padding: 14px 14px 18px !important;
}

/* Responsive — give description a bit more air on smaller phones */
@media (max-width: 640px) {
    body.landing .phone-tag {
        font-size: 0.68rem !important;
    }
}

/* ==========================================================================
   Phone text rendering — anti-alias + crisper typography inside 3D box
   ========================================================================== */

/* Force consistent subpixel anti-alias inside rotated 3D elements */
body.landing .phone-scene .phone-screen,
body.landing .phone-scene .phone-info,
body.landing .phone-scene .phone-title,
body.landing .phone-scene .phone-tag {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Crisper info panel typography */
body.landing .phone-info {
    padding: 14px 16px 20px !important;
}

body.landing .phone-title {
    font-size: 1rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.022em !important;
    line-height: 1.18 !important;
    margin-bottom: 7px !important;
}

body.landing .phone-tag {
    font-size: 0.74rem !important;
    font-weight: 500 !important;
    letter-spacing: -0.005em !important;
    line-height: 1.5 !important;
    opacity: 0.7;
    margin-top: 0;
}

@media (max-width: 640px) {
    body.landing .phone-title {
        font-size: 0.88rem !important;
    }

    body.landing .phone-tag {
        font-size: 0.66rem !important;
        line-height: 1.4 !important;
    }
}

/* ==========================================================================
   Phone title — small icon next to service name
   ========================================================================== */
body.landing .phone-title {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

body.landing .phone-title-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
    vertical-align: middle;
}

@media (max-width: 640px) {
    body.landing .phone-title-icon {
        width: 14px;
        height: 14px;
    }
}

/* Override: phone-title returns to block; icon shows ABOVE title, centered */
body.landing .phone-title {
    display: block !important;
    gap: 0;
}

body.landing .phone-title-icon {
    display: block !important;
    margin: 0 auto 8px !important;
    width: 28px !important;
    height: 28px !important;
    object-fit: contain;
    border-radius: 6px;
}

@media (max-width: 640px) {
    body.landing .phone-title-icon {
        width: 22px !important;
        height: 22px !important;
        margin-bottom: 6px !important;
    }
}

/* ==========================================================================
   Jabayo hero card inside the phone (icon + jabayo text side by side)
   ========================================================================== */
body.landing .phone-hero.jabayo-hero-card {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 14px !important;
    background: #07204e !important;
    flex: 1 1 auto;
    min-height: 0;
}

body.landing .jabayo-hero-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.landing .jabayo-hero-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 7px;
    flex-shrink: 0;
}

body.landing .jabayo-hero-name {
    font-family: var(--f-display);
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.2px;
    line-height: 1;
}

body.landing .jabayo-hero-sub {
    font-family: var(--f-body);
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.5px;
}

@media (max-width: 640px) {
    body.landing .jabayo-hero-icon {
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }

    body.landing .jabayo-hero-name {
        font-size: 22px;
    }

    body.landing .jabayo-hero-sub {
        font-size: 8px;
    }
}

/* ==========================================================================
   Per-service phone-title brand color (falls back to --screen-fg)
   ========================================================================== */
body.landing .phone-title {
    color: var(--title-color, var(--screen-fg, #0a0a0a)) !important;
}

/* ==========================================================================
   BAROSQUARE hero card inside the phone (text-based, no logo image)
   ========================================================================== */
body.landing .phone-hero.baro-hero-card {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 14px !important;
    background: #ffffff !important;
    flex: 1 1 auto;
    min-height: 0;
    text-align: center;
}

body.landing .baro-hero-label {
    font-family: var(--f-body);
    font-size: 9px;
    font-weight: 700;
    color: #7030F0;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    opacity: 0.85;
}

body.landing .baro-hero-name {
    font-family: var(--f-display);
    font-size: 24px;
    font-weight: 800;
    color: #7030F0;
    letter-spacing: -0.8px;
    line-height: 1;
}

@media (max-width: 640px) {
    body.landing .baro-hero-label { font-size: 7px; letter-spacing: 1.2px; }
    body.landing .baro-hero-name  { font-size: 18px; letter-spacing: -0.5px; }
}

/* Nav menu — revert forced height/flex overrides, let base .nav-menu alignment work */

/* Nav menu link — inline-flex so baseline between btn-contact and text links matches */
body.landing .nav-menu a {
    display: inline-flex;
    align-items: center;
}

/* ==========================================================================
   Online booking CTA (jabayo reservation)
   ========================================================================== */
body.landing .contact-alt--online {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.landing .contact-alt-link--book {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 26px !important;
    font-weight: 700 !important;
    font-size: 0.98rem !important;
    border-radius: 999px !important;
    box-shadow: 0 14px 30px -8px rgba(118, 75, 162, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

body.landing .contact-alt-link--book i {
    color: #FFD76A !important;
}

body.landing .contact-alt-link--book:hover {
    background: linear-gradient(135deg, #764ba2 0%, #E11D48 100%) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -8px rgba(225, 29, 72, 0.5);
}

body.landing .contact-alt-link--book:hover i {
    color: #fff !important;
}

/* ==========================================================================
   Form — personal info consent block (mandatory checkbox)
   ========================================================================== */
body.landing .form-consent {
    margin-top: 32px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

body.landing .form-consent-note {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 14px;
}

body.landing .form-consent-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    user-select: none;
}

body.landing .form-consent-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    flex-shrink: 0;
}

body.landing .form-consent-check input[type="checkbox"]:hover {
    border-color: rgba(225, 29, 72, 0.6);
}

body.landing .form-consent-check input[type="checkbox"]:checked {
    background: #E11D48;
    border-color: #E11D48;
}

body.landing .form-consent-check input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

body.landing .form-consent-check .req {
    color: #E11D48;
    margin-left: 2px;
}

/* ==========================================================================
   Form consent checkbox — override generic input styles that squashed it
   ========================================================================== */
body.landing .contact-form input[type="checkbox"],
body.landing .form-consent-check input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 4px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    box-shadow: none !important;
}

body.landing .contact-form input[type="checkbox"]:hover,
body.landing .form-consent-check input[type="checkbox"]:hover {
    border-color: rgba(225, 29, 72, 0.6) !important;
    border-bottom-color: rgba(225, 29, 72, 0.6) !important;
}

body.landing .contact-form input[type="checkbox"]:checked,
body.landing .form-consent-check input[type="checkbox"]:checked {
    background: #E11D48 !important;
    border-color: #E11D48 !important;
    border-bottom-color: #E11D48 !important;
}

body.landing .contact-form input[type="checkbox"]:checked::after,
body.landing .form-consent-check input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

body.landing .contact-form input[type="checkbox"]:focus,
body.landing .form-consent-check input[type="checkbox"]:focus {
    outline: 2px solid rgba(225, 29, 72, 0.4);
    outline-offset: 2px;
}

/* Remove arrow from submit button */
body.landing .contact-form .form-actions .btn-primary::after,
body.landing .contact-form .form-actions .btn-primary:hover::after {
    content: none !important;
    display: none !important;
}

/* ==========================================================================
   Phone mockups — mobile text refinements (avoid ugly wrap)
   ========================================================================== */
@media (max-width: 640px) {
    /* 하단 인포 영역 여백 축소 */
    body.landing .phone-info {
        padding: 10px 10px 12px !important;
    }

    /* 서비스 이름 */
    body.landing .phone-title {
        font-size: 0.78rem !important;
        line-height: 1.15 !important;
        margin-bottom: 4px !important;
        word-break: keep-all !important;
    }

    /* 서비스 이름 옆의 작은 아이콘 */
    body.landing .phone-title-icon {
        width: 12px !important;
        height: 12px !important;
        margin-bottom: 4px !important;
    }

    /* 설명 텍스트 */
    body.landing .phone-tag {
        font-size: 0.58rem !important;
        line-height: 1.35 !important;
        word-break: keep-all !important;
        letter-spacing: -0.005em !important;
    }

    /* Jabayo 히어로 카드 */
    body.landing .phone-hero.jabayo-hero-card {
        padding: 14px 10px !important;
        gap: 4px;
    }
    body.landing .jabayo-hero-icon {
        width: 20px !important;
        height: 20px !important;
        border-radius: 5px !important;
    }
    body.landing .jabayo-hero-name {
        font-size: 18px !important;
        letter-spacing: -0.8px !important;
        white-space: nowrap;
    }
    body.landing .jabayo-hero-title {
        gap: 6px !important;
    }

    /* BAROSQUARE 히어로 카드 */
    body.landing .phone-hero.baro-hero-card {
        padding: 14px 10px !important;
        gap: 4px;
    }
    body.landing .baro-hero-label {
        font-size: 6px !important;
        letter-spacing: 1px !important;
    }
    body.landing .baro-hero-name {
        font-size: 15px !important;
        letter-spacing: -0.4px !important;
        white-space: nowrap;
    }

    /* 일반 phone-hero 로고 이미지 — 패딩 축소 */
    body.landing .phone-hero {
        padding: 10px 8px !important;
    }
}

@media (max-width: 380px) {
    body.landing .phone-title {
        font-size: 0.7rem !important;
    }
    body.landing .phone-tag {
        font-size: 0.52rem !important;
        line-height: 1.3 !important;
    }
    body.landing .jabayo-hero-name {
        font-size: 16px !important;
    }
    body.landing .baro-hero-name {
        font-size: 13px !important;
    }
    body.landing .phone-info {
        padding: 8px 8px 10px !important;
    }
}
