/* ========================================
   2FRAMES — WEBSITE STYLES
   Fonts: Editorial New Ultralight Italic (headlines), NHaas Grotesk TX Pro (UI text)
   Colors: Off-white #F7EEE5, Violet #9274ED, Green #54DD7B, Coral #FF8A6A, Yellow #FFD166, Black #000
   ======================================== */

@font-face {
    font-family: 'EditorialNew';
    src: url('2FRAMESWEB_podklady/EditorialNew-UltralightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'NHaasGroteskTX';
    src: url('2FRAMESWEB_podklady/NHaasGroteskTXPro-55Rg.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NHaasGroteskTX';
    src: url('2FRAMESWEB_podklady/NHaasGroteskTXPro-65Md.ttf') format('truetype');
    font-weight: 500 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --violet: #9274ED;
    --violet-dark: #8264DD;
    --violet-light: #A98AF0;
    --violet-deep: #7A5ED4;
    --green: #54DD7B;
    --coral: #54DD7B;
    --yellow: #FFD166;
    --black: #000000;
    --off-white: #F7EEE5;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --font-sans: 'NHaasGroteskTX', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-serif: 'EditorialNew', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--off-white);
    color: var(--text-dark);
    line-height: 1.4;
    overflow-x: hidden;
}

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

em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
}

/* ========================================
   LOGO IMAGE HELPERS
   ======================================== */

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

.logo-img-sm {
    width: 180px;
}

.logo-img-md {
    width: 160px;
}

/* ========================================
   SHARED DECORATIVE UTILITIES
   ======================================== */

/* Decorative layer — sits behind content */
.section-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* Dashed green accent line */
.accent-line {
    border: none;
    border-top: 3px dashed var(--green);
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.accent-line-partial {
    width: 40%;
}

/* Shared organic blob shape */
.pkg-blob {
    position: absolute;
    border-radius: 60% 40% 70% 30% / 50% 30% 70% 50%;
    pointer-events: none;
}

/* Shared wave curve (outline ellipses) */
.wave-curve {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Dark subtle wave (used on black bg) */
.dark-wave {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Dark subtle curve (used in pipeline) */
.dark-curve {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* ========================================
   SHARED BUTTONS
   ======================================== */

.btn-primary {
    display: inline-block;
    background: var(--green);
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    transition: opacity 0.2s ease;
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-large {
    font-size: 15px;
    padding: 18px 40px;
}

/* ========================================
   STICKY NAVIGATION
   ======================================== */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--off-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    width: 240px;
    height: auto;
    display: block;
}

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

.nav-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 1;
}

.nav-cta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    background: var(--green);
    padding: 10px 22px;
    border-radius: 30px;
    transition: opacity 0.2s ease;
}

.nav-cta:hover {
    opacity: 0.85;
}

/* ========================================
   HERO — uses BG 2F-0.jpg
   ======================================== */

.hero {
    background: var(--violet) url('BG 2F-0.jpg') center top / cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 160px;
    position: relative;
    overflow: hidden;
}

.hero-text {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 80px 40px 60px;
}

.hero-line {
    display: block;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-line em {
    color: var(--off-white);
    font-size: 1.05em;
}

.hero-sub {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--off-white);
    opacity: 0.85;
    margin-top: 20px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta-btn {
    display: inline-block;
    background: var(--green);
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 30px;
    margin-bottom: 36px;
    transition: opacity 0.2s ease;
}

.hero-cta-btn:hover {
    opacity: 0.85;
}

.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--off-white);
    opacity: 0.75;
}

.trust-sep {
    color: var(--green);
    font-size: 18px;
    opacity: 0.6;
    line-height: 1;
}

/* ========================================
   ABOUT
   ======================================== */

/* ===== SHOWREEL SECTION ===== */
.showreel {
    background: var(--off-white);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.showreel .container {
    position: relative;
    z-index: 1;
}

.showreel-deco .pb-1 {
    background: rgba(146, 116, 237, 0.12);
}

.showreel-deco .pb-2 {
    background: rgba(84, 221, 123, 0.14);
}

.showreel-frame {
    max-width: 1040px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(122, 94, 212, 0.18);
    background: #000;
}

.showreel-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.about {
    background: var(--off-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Butterfly shapes in bottom corners */
.butterfly {
    position: absolute;
    width: 260px;
    height: 260px;
    bottom: -40px;
}

.butterfly-left  { left: -60px; }
.butterfly-right { right: -60px; transform: scaleX(-1); }

.butterfly::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--green);
    border-radius: 50% 0 50% 50%;
    top: 0;
    left: 60px;
    transform: rotate(-30deg);
}

.butterfly::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--green);
    border-radius: 0 50% 50% 50%;
    bottom: 0;
    left: 0;
    transform: rotate(-30deg);
}

/* Wave curves — outline ellipses */
.about-wc-1 {
    width: 900px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    border: 2px solid rgba(84, 221, 123, 0.18);
    transform: rotate(-10deg);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
}

.about-wc-2 {
    width: 700px;
    height: 300px;
    top: -100px;
    right: -150px;
    border: 2px solid rgba(84, 221, 123, 0.12);
    transform: rotate(15deg);
    border-radius: 50%;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-headline {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 60px;
}

.about-headline em {
    text-decoration: underline;
    text-decoration-color: var(--green);
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.about-card {
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.about-card-label {
    margin-bottom: 20px;
}

.purple-pill {
    display: inline-block;
    background: var(--violet);
    color: var(--off-white);
    padding: 6px 24px;
    border-radius: 30px;
    font-size: 14px;
}

.about-card ul {
    list-style: disc;
    padding-left: 20px;
}

.about-card li {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.about-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.about-bottom-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ========================================
   PORTFOLIO
   ======================================== */

.portfolio {
    background: var(--black);
    color: var(--off-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.portfolio-deco {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.dw-p1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px solid rgba(146, 116, 237, 0.08);
    top: -180px;
    right: -100px;
}

.dw-p2 {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 2px solid rgba(84, 221, 123, 0.06);
    bottom: -80px;
    left: 5%;
}

.portfolio .container {
    position: relative;
    z-index: 1;
}

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

.portfolio-header .purple-pill {
    margin-bottom: 16px;
    display: inline-block;
}

/* ── Scroll track ──────────────────────── */

.portfolio-scroll-wrap {
    position: relative;
    z-index: 1;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0 40px;
    margin-top: 0;
    cursor: grab;
}

.portfolio-scroll-wrap::-webkit-scrollbar { display: none; }

.portfolio-track {
    display: flex;
    gap: 24px;
    padding: 0 max(40px, calc((100vw - 1200px) / 2 + 40px));
    width: max-content;
    align-items: stretch;
}

/* ── Cards ─────────────────────────────── */

.portfolio-card {
    width: 420px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(84, 221, 123, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.portfolio-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
}

.portfolio-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

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

.portfolio-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.72);
    color: var(--green);
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(84, 221, 123, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.portfolio-info {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portfolio-name {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--off-white);
    margin: 0 0 10px;
    text-transform: uppercase;
}

.portfolio-desc {
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.65;
    color: rgba(247, 238, 229, 0.62);
    margin: 0 0 18px;
    flex: 1;
}

.portfolio-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.pstat {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(247, 238, 229, 0.55);
}

.pstat-green {
    background: rgba(84, 221, 123, 0.12);
    color: var(--green);
}

.portfolio-link {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(84, 221, 123, 0.35);
    transition: border-color 0.2s, color 0.2s;
    align-self: flex-start;
}

.portfolio-link:hover {
    color: var(--off-white);
    border-color: var(--off-white);
}

/* ── Footer note ───────────────────────── */

.portfolio-footer-note {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(247, 238, 229, 0.4);
    margin-top: 8px;
    margin-bottom: 0;
}

.portfolio-footer-link {
    color: var(--green);
    text-decoration: none;
    border-bottom: 1px solid rgba(84, 221, 123, 0.35);
    transition: opacity 0.2s;
}

.portfolio-footer-link:hover {
    opacity: 0.75;
}

/* ========================================
   PIPELINE (dark section)
   ======================================== */

.pipeline {
    background: var(--black);
    color: var(--off-white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Floating background pill shapes */
.float-pill {
    position: absolute;
    padding: 8px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.fp-green  { background: var(--green);  color: var(--black);     opacity: 0.22; }
.fp-violet { background: var(--violet); color: var(--off-white); opacity: 0.22; }
.fp-coral  { background: var(--coral);  color: var(--black);     opacity: 0.22; }

.fp-1 { top: 12%;   left: 8%;    transform: rotate(-14deg); }
.fp-2 { top: 30%;   right: 6%;   transform: rotate(8deg);   }
.fp-3 { top: 60%;   left: 14%;   transform: rotate(-6deg);  opacity: 0.15; }
.fp-4 { bottom: 18%; right: 12%; transform: rotate(18deg);  }
.fp-5 { top: 75%;   left: 5%;    transform: rotate(-20deg); opacity: 0.15; }

/* Dark organic curve overlays */
.dark-curve-1 {
    width: 1000px;
    height: 600px;
    bottom: -300px;
    left: -200px;
    border: 2px solid rgba(84, 221, 123, 0.06);
    transform: rotate(-20deg);
}

.dark-curve-2 {
    width: 800px;
    height: 400px;
    top: -150px;
    right: -200px;
    border: 2px solid rgba(84, 221, 123, 0.05);
    transform: rotate(15deg);
}

.pipeline .container {
    position: relative;
    z-index: 1;
}

.pipeline-text {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.7;
}

.pipeline-text.mt {
    margin-top: 50px;
}

.pill {
    display: inline-block;
    padding: 4px 22px;
    border-radius: 30px;
    font-weight: 500;
}

.pill em {
    color: inherit;
}

.pill-green  { background: var(--green);  color: var(--black); }
.pill-coral  { background: var(--coral);  color: var(--black); }
.pill-violet { background: var(--violet); color: var(--off-white); }
.pill-purple { background: var(--violet); color: var(--off-white); }

/* ========================================
   WORKFLOW MODULES
   ======================================== */

.workflow {
    background: var(--violet);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Off-white organic wave at the bottom */
.workflow-wave {
    position: absolute;
    bottom: -80px;
    left: -10%;
    width: 120%;
    height: 340px;
    background: var(--off-white);
    border-radius: 50% 50% 0 0 / 120px 120px 0 0;
    opacity: 0.15;
    pointer-events: none;
}

.workflow-wave::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 5%;
    width: 90%;
    height: 250px;
    background: var(--off-white);
    border-radius: 50% 50% 0 0 / 80px 80px 0 0;
    opacity: 0.3;
}

.workflow .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-title em {
    color: var(--green);
}

.section-title.light {
    color: var(--off-white);
}

.section-title.light em {
    color: var(--green);
}

.section-subtitle {
    font-size: 22px;
    margin-top: 5px;
    margin-bottom: 50px;
    color: var(--off-white);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.workflow-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: 30px;
    border: 3px solid transparent;
}

.card-coral   { border-color: var(--coral); }
.card-green   { border-color: var(--green); }
.card-yellow  { border-color: var(--yellow); }

.workflow-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.workflow-card-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: var(--off-white);
    border: 2px solid var(--text-dark);
    border-radius: 30px;
    padding: 6px 18px;
    text-transform: uppercase;
}

.arrow-icon {
    width: 36px;
    height: 36px;
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.workflow-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    width: fit-content;
    text-transform: uppercase;
}

.tag-coral  { background: var(--coral);  color: var(--black); }
.tag-green  { background: var(--green);  color: var(--black); }
.tag-yellow { background: var(--yellow); color: var(--black); }

.workflow-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--off-white);
    margin-top: 40px;
    opacity: 0.7;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ========================================
   PLATFORMS — two-zone layout
   Off-white top (.platforms-top) + green bottom (.platforms-bottom)
   ======================================== */

.platforms {
    /* section wrapper — no background, children handle it */
}

.platforms-top {
    background: var(--off-white);
    padding: 80px 0 48px;
}

.platforms-top .container {
    position: relative;
}

.platforms-bottom {
    background: var(--green);
    padding: 20px 0 60px;
}

.platforms-bottom .container {
    position: relative;
}

.platforms-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.platforms .section-title {
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1.0;
    color: var(--text-dark);
}

.platforms .section-title em {
    color: var(--green);
}

.platforms-desc {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 20px;
    max-width: 440px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* QR images row — sits in off-white zone */
.platforms-qr-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.platforms-qr-images img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
}

/* Labels row — sits in green zone, same column widths */
.platforms-labels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.platform-label h3 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.platform-label p {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-dark);
    opacity: 0.65;
    text-transform: uppercase;
}

/* Global qr-code (used in CTA) */
.qr-code {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}

/* ========================================
   WHY PARTNER
   ======================================== */

.why-partner {
    background: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Dark green organic wave curves as subtle texture */
.dw-1 {
    width: 1100px;
    height: 700px;
    top: -200px;
    left: -300px;
    border: 2px solid rgba(84, 221, 123, 0.08);
    transform: rotate(-15deg);
}

.dw-2 {
    width: 900px;
    height: 500px;
    bottom: -150px;
    right: -200px;
    border: 2px solid rgba(84, 221, 123, 0.05);
    transform: rotate(20deg);
}

.dw-3 {
    width: 600px;
    height: 400px;
    top: 30%;
    left: 30%;
    border: 2px solid rgba(84, 221, 123, 0.04);
    transform: rotate(5deg);
}

.why-partner .container {
    position: relative;
    z-index: 1;
}

.why-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.why-tagline {
    font-size: 13px;
    font-weight: 500;
    color: var(--off-white);
    letter-spacing: 0.03em;
    text-align: right;
    text-transform: uppercase;
    opacity: 0.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--violet);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.why-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 100px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    pointer-events: none;
}

.why-card-icon {
    display: inline-block;
    width: 14px;
    height: 11px;
    background: var(--green);
    border-radius: 50% 40% 50% 40% / 40% 50% 40% 50%;
    margin-bottom: 10px;
}

.why-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.why-card p {
    font-size: 12px;
    font-weight: 400;
    color: var(--off-white);
    opacity: 0.85;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ========================================
   PRICING OVERVIEW TABLE
   ======================================== */

.pricing-overview {
    background: var(--violet);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Off-white wave covering the bottom ~65% */
.pricing-wave-divider {
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 65%;
    background: var(--off-white);
    border-radius: 50% 50% 0 0 / 100px 100px 0 0;
    z-index: 0;
    pointer-events: none;
}

/* Decorative blobs in violet top area */
.po-blob-1 {
    width: 300px;
    height: 240px;
    top: 2%;
    right: 15%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(20deg);
}

.po-blob-2 {
    width: 200px;
    height: 160px;
    top: 8%;
    left: 8%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    transform: rotate(-30deg);
}

.pricing-overview .container {
    position: relative;
    z-index: 1;
}

.pricing-overview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.pricing-overview-header .section-title {
    color: var(--off-white);
}

.pricing-note {
    font-size: 12px;
    font-weight: 500;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 10px;
    opacity: 0.85;
}

.pricing-table-wrap {
    border-radius: 14px;
    overflow: hidden;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--off-white);
    font-size: 14px;
}

.pricing-table thead th {
    background: var(--text-dark);
    color: var(--off-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px 24px;
    text-align: center;
}

.pricing-table thead th:first-child {
    text-align: left;
}

.pricing-table thead th:nth-child(n+2) {
    background: var(--green);
    color: var(--black);
}

.pricing-table tbody td {
    padding: 18px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 500;
}

.pricing-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-dark);
}

.footer-badges {
    display: flex;
    gap: 30px;
}

.pricing-cta-row {
    margin-top: 40px;
    text-align: center;
}

/* ========================================
   PACKAGES — consolidated 3-column grid
   ======================================== */

.packages-section {
    background: radial-gradient(ellipse at 50% 20%, var(--violet-light) 0%, var(--violet) 60%, var(--violet-deep) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.packages-section .container {
    position: relative;
    z-index: 1;
}

.packages-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* Shared organic blobs (pkg-deco) */
.pb-1 {
    width: 500px;
    height: 400px;
    top: -80px;
    left: -100px;
    background: rgba(255, 255, 255, 0.09);
    transform: rotate(-25deg);
}

.pb-2 {
    width: 350px;
    height: 280px;
    top: 20%;
    right: -60px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    transform: rotate(40deg);
}

.pb-3 {
    width: 260px;
    height: 200px;
    bottom: 10%;
    left: 30%;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 70% 30% 60% 40% / 40% 60% 40% 60%;
    transform: rotate(-15deg);
}

/* Ghost speech-bubble cards (Package 3 detail decoration) */
.ghost-card {
    position: absolute;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    pointer-events: none;
}

.ghost-card::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid rgba(255, 255, 255, 0.18);
}

.gc-1 { width: 200px; height: 120px; top: 12%;   right: 8%;   transform: rotate(6deg);  }
.gc-2 { width: 160px; height: 100px; top: 45%;   right: 4%;   transform: rotate(-4deg); opacity: 0.7; }
.gc-3 { width: 180px; height:  80px; bottom: 15%; left: 5%;   transform: rotate(10deg); opacity: 0.5; }

/* Individual package card */
.pkg-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pkg-card-featured {
    background: var(--off-white);
    border: 3px solid var(--green);
    box-shadow: 0 0 0 6px rgba(84, 221, 123, 0.15);
    margin-top: -12px;
}

.pkg-featured-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 30px;
    white-space: nowrap;
}

.pkg-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pkg-card-top {
    margin-bottom: 24px;
}

.pkg-price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    background: var(--text-dark);
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 12px;
    line-height: 1;
    margin-bottom: 16px;
}

.pkg-card-featured .pkg-price-badge {
    background: var(--violet);
}

.from-small {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.pkg-title {
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--off-white);
    margin-bottom: 8px;
}

.pkg-card-featured .pkg-title {
    color: var(--text-dark);
}

.pkg-title em {
    color: var(--green);
}

.pkg-card-featured .pkg-title em {
    color: var(--violet);
}

.pkg-sub {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.pkg-card-featured .pkg-sub {
    color: var(--text-dark);
    opacity: 0.7;
}

/* Package detail table — reused from old package sections */
.package-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--off-white);
    border-radius: 14px;
    overflow: hidden;
    font-size: 12px;
}

.pkg-card > .pkg-card-inner .package-table {
    background: rgba(255, 255, 255, 0.12);
    color: var(--off-white);
    border-radius: 10px;
}

.pkg-card-featured .package-table {
    background: var(--off-white);
    color: var(--text-dark);
}

.package-table thead th {
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}

.package-table thead th:first-child {
    background: rgba(0, 0, 0, 0.25);
    color: var(--off-white);
    text-align: left;
}

.pkg-card-featured .package-table thead th:first-child {
    background: var(--text-dark);
    color: var(--off-white);
}

.green-header {
    background: var(--green);
    color: var(--black);
}

.package-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--off-white);
}

.pkg-card-featured .package-table tbody td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
}

.package-table tbody td:first-child {
    text-align: left;
    font-weight: 700;
}

.package-table tbody tr:last-child td {
    border-bottom: none;
}

.pkg-cta {
    display: block;
    margin-top: 20px;
    padding: 12px 20px;
    background: var(--green);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    text-align: center;
    transition: opacity 0.2s ease;
}

.pkg-cta:hover {
    opacity: 0.85;
}

/* Pricing — blurred price cells */
.price-blurred {
    filter: blur(6px);
    user-select: none;
}

/* Packages — blur wrap + overlay */
.packages-blur-wrap {
    position: relative;
}

.packages-blur-wrap .packages-grid {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

.packages-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Process — book a call CTA row */
.process-cta-row {
    margin-top: 60px;
    text-align: center;
}

.pkg-note {
    font-size: 11px;
    font-weight: 500;
    color: var(--off-white);
    margin-top: 24px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    opacity: 0.7;
    text-align: center;
}

/* ========================================
   PARTNER PROCESS
   ======================================== */

.process {
    background: var(--off-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-wc-1 {
    width: 800px;
    height: 400px;
    bottom: -150px;
    right: -200px;
    border: 2px solid rgba(84, 221, 123, 0.12);
    transform: rotate(10deg);
}

.process-wc-2 {
    width: 600px;
    height: 300px;
    top: 20%;
    left: -150px;
    border: 2px solid rgba(84, 221, 123, 0.08);
    transform: rotate(-20deg);
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.logo-accent-dark {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.partner-guideline {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    text-transform: uppercase;
}

/* Timeline layout */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.process-row {
    display: flex;
    gap: 0;
    position: relative;
    align-items: flex-start;
}

/* Connecting horizontal line */
.process-row:not(.process-row-solo)::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--violet);
    opacity: 0.35;
    z-index: 0;
}

.process-row .process-step {
    flex: 1;
    position: relative;
    z-index: 1;
    padding-right: 24px;
}

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

.process-step {
    position: relative;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--violet);
    color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.step-label {
    margin-bottom: 12px;
    display: inline-block;
}

.process-step p {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.5;
    padding-left: 2px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    background: radial-gradient(ellipse at 30% 70%, var(--violet-light) 0%, var(--violet) 60%, var(--violet-deep) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    font-size: 16px;
    color: var(--yellow);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.quote-mark {
    font-size: 52px;
    font-weight: 700;
    color: var(--green);
    line-height: 0.9;
    margin-bottom: 16px;
    display: block;
}

.testimonial-card:nth-child(1) .quote-mark { color: var(--violet); }
.testimonial-card:nth-child(2) .quote-mark { color: var(--green); }
.testimonial-card:nth-child(3) .quote-mark { color: var(--coral); }

.testimonial-card p {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-card:nth-child(1) .author-avatar {
    background: var(--violet);
    box-shadow: 0 0 0 3px var(--violet);
}

.testimonial-card:nth-child(2) .author-avatar {
    background: var(--green);
    box-shadow: 0 0 0 3px var(--green);
}

.testimonial-card:nth-child(3) .author-avatar {
    background: var(--coral);
    box-shadow: 0 0 0 3px var(--coral);
}

.testimonial-author-info strong {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--violet);
    display: block;
    letter-spacing: 0.02em;
}

.testimonial-author-info span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    opacity: 0.7;
}

/* ========================================
   CTA / CONTACT
   ======================================== */

.cta {
    background: radial-gradient(ellipse at 50% 30%, var(--violet-light) 0%, var(--violet) 55%, var(--violet-deep) 100%);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.cta .section-deco .pkg-blob {
    z-index: 0;
}

.cta-inner {
    background: var(--off-white);
    border: 3px solid var(--violet-dark);
    border-radius: 48px;
    padding: 80px 40px 60px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Flowing green wavy line across middle of the card */
.cta-wave-line {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 200px;
    border-top: 2px solid var(--green);
    border-radius: 50%;
    transform: translateY(-50%) rotate(-3deg);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

/* Butterfly icon in violet — top-left of card */
.cta-butterfly-icon {
    position: absolute;
    top: 32px;
    left: 40px;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 0;
}

.cta-butterfly-icon::before {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    background: var(--violet);
    opacity: 0.35;
    border-radius: 50% 0 50% 50%;
    top: 0;
    left: 15px;
    transform: rotate(-30deg);
}

.cta-butterfly-icon::after {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    background: var(--violet);
    opacity: 0.35;
    border-radius: 0 50% 50% 50%;
    bottom: 0;
    left: 0;
    transform: rotate(-30deg);
}

.cta-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--violet);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-email {
    display: inline-block;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(22px, 3vw, 40px);
    color: var(--text-dark);
    text-decoration: underline;
    text-decoration-color: var(--green);
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

/* QR code links grid */
.cta-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-link-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-dark);
}

.cta-link-item .qr-code {
    width: 100px;
    height: 100px;
    transition: transform 0.2s ease;
}

.cta-link-item:hover .qr-code {
    transform: scale(1.05);
}

.cta-btn-row {
    margin-top: 40px;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-logo-wrap {
    margin-top: 48px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-logo-img {
    width: clamp(240px, 35vw, 480px);
    height: auto;
    display: inline-block;
    opacity: 0.85;
}

.cta-logo {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(80px, 12vw, 160px);
    color: transparent;
    -webkit-text-stroke: 2px var(--violet);
    opacity: 0.4;
    line-height: 1;
    position: relative;
    z-index: 1;
}

/* ========================================
   RESPONSIVE — 900px (tablet)
   ======================================== */

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

    /* Nav */
    .nav-logo { width: 180px; }
    .nav-links { gap: 16px; }
    .nav-link { display: none; }

    /* Hero */
    .hero-text { padding: 80px 24px 60px; }

    /* About */
    .about { padding: 80px 0; }
    .showreel { padding: 72px 0; }
    .about-headline { margin-bottom: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-bottom { flex-direction: column; gap: 16px; }
    .butterfly { width: 180px; height: 180px; bottom: -20px; }
    .butterfly::before, .butterfly::after { width: 100px; height: 100px; }
    .about-wc-1, .about-wc-2 { display: none; }

    /* Portfolio */
    .portfolio { padding: 80px 0 60px; }
    .portfolio-header { margin-bottom: 36px; }
    .portfolio-card { width: 340px; }

    /* Pipeline */
    .pipeline { padding: 80px 0; }
    .fp-3, .fp-4, .fp-5 { display: none; }
    .float-pill { opacity: 0.12; }

    /* Workflow */
    .workflow { padding: 80px 0 60px; }
    .workflow-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Why Partner */
    .why-partner { padding: 80px 0; }
    .why-header { flex-direction: column; gap: 20px; }
    .why-tagline { text-align: left; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .dw-1, .dw-3 { display: none; }

    /* Pricing */
    .pricing-overview { padding: 80px 0; }
    .pricing-overview-header { flex-direction: column; gap: 20px; }
    .pricing-wave-divider { height: 70%; }
    .po-blob-1, .po-blob-2 { display: none; }
    .pricing-table-footer { flex-direction: column; gap: 12px; }
    .footer-badges { flex-direction: column; gap: 8px; }

    /* Process */
    .process { padding: 80px 0; }
    .process-header { flex-direction: column; gap: 20px; }
    .logo-accent-dark { align-items: flex-start; }
    .process-row { flex-direction: column; gap: 28px; }
    .process-row::before { display: none; }
    .process-row .process-step { padding-right: 0; }

    /* Testimonials */
    .testimonials { padding: 80px 0; }
    .testimonials-header { flex-direction: column; gap: 20px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }

    /* CTA */
    .cta { padding: 40px 20px; }
    .cta-inner { border-radius: 32px; padding: 60px 28px 44px; }
    .cta-links { gap: 24px; }
    .cta-wave-line { opacity: 0.15; }
    .cta-butterfly-icon { top: 16px; left: 20px; width: 44px; height: 44px; }
}

/* ========================================
   RESPONSIVE — 600px (mobile)
   ======================================== */

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

    section {
        overflow: hidden;
    }

    /* Hide all decorative elements on mobile */
    .section-deco > * {
        display: none;
    }

    /* ── Nav ───────────────────────────── */
    .site-nav { padding: 10px 0; }
    .nav-logo { width: 130px; }
    .nav-cta { font-size: 11px; padding: 9px 16px; }

    /* ── Hero ──────────────────────────── */
    .hero {
        background-position: center center;
        min-height: 100svh;
    }

    .hero-text {
        padding: 80px 20px 52px;
    }

    .hero-line {
        font-size: clamp(34px, 10.5vw, 52px);
        letter-spacing: -0.03em;
    }

    .hero-sub {
        font-size: 11px;
        margin-top: 14px;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .hero-cta-btn {
        font-size: 12px;
        padding: 14px 28px;
        margin-bottom: 28px;
    }

    .hero-trust {
        gap: 6px 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-item { font-size: 10px; }

    /* ── About ─────────────────────────── */
    .about { padding: 64px 0; }
    .showreel { padding: 64px 0; }
    .showreel-frame { border-radius: 16px; }

    .about-headline {
        font-size: clamp(22px, 7vw, 34px);
        margin-bottom: 32px;
        line-height: 1.2;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .about-card { padding-top: 14px; }
    .about-card li { font-size: 12px; }

    .about-bottom {
        flex-direction: column;
        gap: 10px;
        padding-top: 18px;
    }

    .about-bottom-item { font-size: 10px; }
    .butterfly { display: none; }

    /* ── Portfolio ─────────────────────── */
    .portfolio { padding: 64px 0 48px; }
    .portfolio-header { margin-bottom: 28px; }
    .portfolio-card { width: 82vw; max-width: 340px; }
    .portfolio-track { padding: 0 20px; }
    .portfolio-name { font-size: 15px; }
    .portfolio-info { padding: 18px 20px 22px; }
    .portfolio-footer-note { font-size: 12px; }

    /* ── Pipeline ──────────────────────── */
    .float-pill { display: none; }
    .dark-curve { display: none; }
    .pipeline { padding: 64px 0; }

    .pipeline-text {
        font-size: 15px;
        line-height: 2;
        text-align: left;
    }

    .pipeline-text.mt { margin-top: 32px; }

    .pill {
        display: inline-block;
        padding: 2px 12px;
        font-size: 13px;
    }

    /* ── Workflow ──────────────────────── */
    .workflow { padding: 64px 0 44px; }
    .section-subtitle { font-size: 17px; margin-bottom: 28px; }
    .workflow-grid { grid-template-columns: 1fr; gap: 12px; }
    .workflow-card { padding: 22px; }
    .workflow-label { margin-top: 28px; }

    /* ── Why Partner ───────────────────── */
    .why-partner { padding: 64px 0; }
    .why-grid { grid-template-columns: 1fr; gap: 12px; }
    .dark-wave { display: none; }
    .why-header { margin-bottom: 40px; }
    .why-number { font-size: 72px; }
    .why-card { padding: 22px 22px 22px 22px; }

    /* ── Pricing ───────────────────────── */
    .pricing-overview { padding: 64px 0 80px; }

    .pricing-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
        /* subtle right fade to hint at scroll */
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
    }

    .pricing-table {
        font-size: 12px;
        min-width: 440px;
    }

    .pricing-table thead th {
        padding: 12px 14px;
        font-size: 10px;
    }

    .pricing-table tbody td {
        padding: 14px 14px;
        font-size: 11px;
        white-space: nowrap;
    }

    .pricing-table tbody td:first-child {
        font-size: 10px;
        white-space: normal;
        min-width: 120px;
    }

    .pricing-wave-divider {
        border-radius: 30% 30% 0 0 / 60px 60px 0 0;
        height: 50%;
    }

    .pricing-table-footer {
        font-size: 10px;
    }

    .pricing-cta-row { margin-top: 24px; }

    /* ── Process ───────────────────────── */
    .process { padding: 64px 0; }
    .accent-line-partial { width: 70%; }
    .process-wc-1, .process-wc-2 { display: none; }
    .process-header { margin-bottom: 40px; }
    .process-timeline { gap: 28px; }
    .process-row { gap: 20px; }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .process-step p { font-size: 10px; }

    .process-cta-row {
        margin-top: 40px;
    }

    /* ── Testimonials ──────────────────── */
    .testimonials { padding: 64px 0; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
    .testimonial-card { padding: 22px; }
    .quote-mark { font-size: 40px; margin-bottom: 10px; }
    .testimonial-card p { font-size: 11px; }

    /* ── CTA ───────────────────────────── */
    .cta { padding: 24px 14px; }

    .cta-inner {
        border-radius: 24px;
        padding: 44px 20px 36px;
    }

    .cta-wave-line { display: none; }
    .cta-butterfly-icon { display: none; }

    .cta-eyebrow { font-size: 11px; }

    .cta-title {
        font-size: clamp(26px, 8vw, 40px);
        margin-bottom: 14px;
    }

    .cta-email {
        font-size: clamp(14px, 4.5vw, 20px);
        word-break: break-all;
        margin-bottom: 24px;
    }

    .cta-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 18px;
        margin-top: 12px;
        margin-bottom: 36px;
    }

    .cta-link-item { min-width: 64px; }
    .cta-link-item .qr-code { width: 64px; height: 64px; }
    .cta-link-label { font-size: 10px; }

    .cta-btn-row { margin-top: 28px; }

    .cta-logo-wrap { margin-top: 32px; }

    .cta-logo-img {
        width: clamp(160px, 55vw, 280px);
    }

    /* ── Shared buttons ────────────────── */
    .btn-large {
        font-size: 13px;
        padding: 15px 26px;
    }

    .btn-primary { font-size: 12px; }

    /* ── Section titles ────────────────── */
    .section-title {
        font-size: clamp(28px, 8.5vw, 42px);
    }
}
