* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

:root {
    --primary: #2CCF86;
    --secondary: #2F4048;
    --dark: #000;
    --light: #fff;
    --text-dark: #333;
    --text-light: #666;
    --light-bg: #f5f5f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--light-bg);
}

body.no-scroll {
    overflow: hidden;
}

/* ================================
   SPLASH SCREEN
================================ */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.splash-screen.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.splash-logo {
    width: 800px;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: splashFadeIn 0.8s ease-in;
}

@keyframes splashFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes slideToNav {
    from { transform: translate(0, 0) scale(1); opacity: 1; }
    to   { transform: translate(0, -calc(100vh - 80px)) scale(0.3); opacity: 0; }
}

.splash-logo.animate {
    animation: slideToNav 0.3s ease-in-out forwards;
}

.nav-logo-container { display: none; }
.nav-logo-container.show { display: block; }

/* ================================
   NAVIGATION
================================ */
nav {
    background: var(--dark);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    width: 150px;
    height: 60px;
    display: none;
}

.nav-logo-img.show {
    display: block;
    animation: slideInLogo 0.6s ease-out;
}

@keyframes slideInLogo {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover { color: var(--primary); }

/* ================================
   BURGER BUTTON
================================ */
.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 3px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.burger-btn:focus,
.burger-btn:focus-visible {
    outline: none;
    box-shadow: none;
}

.burger-btn span {
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

/* ================================
   MOBILE MENU
================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80vw;
    max-width: 320px;
    min-width: 260px;
    height: 100vh;
    background: linear-gradient(180deg, var(--dark) 0%, var(--secondary) 100%);
    z-index: 1000;
    padding: 0;
    box-shadow: -4px 0 20px rgba(0,0,0,0.4);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: rgba(44, 207, 134, 0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-menu-title {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.mobile-logo {
    height: 50px;
    width: auto;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-menu li { padding: 0 1.5rem; }

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.25rem 0;
    border-left: none;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu a::before { display: none; }

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--primary);
    background: rgba(44, 207, 134, 0.08);
    border-left: none;
    padding-left: 0.5rem;
}

.mobile-menu a:focus,
.mobile-menu a:focus-visible {
    outline: none;
    box-shadow: none;
}

.mobile-menu-icons {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* ================================
   CLOSE BUTTON
================================ */
.close-btn {
    background: none;
    border: none;
    outline: none;
    color: var(--light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    border-radius: 4px;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
}

.close-btn:focus,
.close-btn:focus-visible {
    outline: none;
    box-shadow: none;
}

.close-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--primary);
}

/* ================================
   BACKDROP
================================ */
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

/* ================================
   HERO SECTION
================================ */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

/* ================================
   SERVICES GRID
================================ */
.services-section {
    background: var(--light);
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--light);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(44, 207, 134, 0.15);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}
.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ================================
   WORKFLOW SECTION
================================ */
.workflow-section {
    background: linear-gradient(135deg, var(--primary) 0%, #22a56a 100%);
    color: white;
    padding: 5rem 2rem;
    margin: 3rem 0;
}

.workflow-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.workflow-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.workflow-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.workflow-benefits { list-style: none; }
.workflow-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.workflow-benefits li:before {
    content: "✓";
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    color: rgba(255,255,255,1);
}

.workflow-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid white;
}

.stat-box .number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.stat-box .label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ================================
   ABOUT SECTION
================================ */
.about-section { background: var(--light); padding: 4rem 2rem; }

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--dark); }
.about-content p  { font-size: 1.1rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }

.founders-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.founder-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: left;
}

.founder-card h4    { font-size: 1.4rem; color: var(--dark); margin-bottom: 0.5rem; }
.founder-card .title { color: var(--primary); font-weight: 600; margin-bottom: 1rem; font-size: 1rem; }
.founder-card p     { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; font-size: 0.95rem; }

.founder-expertise { border-top: 1px solid #e0e0e0; padding-top: 1rem; margin-top: 1rem; }
.founder-expertise p { margin-bottom: 0.5rem; }
.founder-expertise .label { color: var(--text-dark); font-weight: 600; font-size: 0.9rem; }
.founder-expertise .skills { color: var(--text-light); font-size: 0.9rem; }

.founder-contact { margin-top: 1rem; font-size: 0.85rem; color: var(--text-light); }
.founder-contact a { color: var(--primary); text-decoration: none; }
.founder-contact a:hover { text-decoration: underline; }

.founders-title { font-size: 1.8rem; color: var(--dark); margin-bottom: 3rem; }

/* ================================
   CONTACT SECTION
================================ */
.contact-section {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-section h2 { font-size: 2rem; margin-bottom: 2rem; }

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item { padding: 1.5rem; }
.contact-item h3 { margin-bottom: 0.5rem; color: var(--primary); }
.contact-item p  { opacity: 0.9; }
.contact-item a  { color: var(--primary); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* ================================
   FOOTER
================================ */
.footer {
    background: var(--dark);
    color: #999;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ================================
   STORY PAGE — story.html / index.html
================================ */
.story-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
    padding: 9rem 2rem 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.story-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 60% 40%, rgba(44,207,134,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.story-hero .overline {
    font-size: 0.82rem; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--primary); margin-bottom: 2rem; display: block;
}

.story-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1.1;
    max-width: 860px;
    margin: 0 auto 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.story-hero h1 em {
    color: var(--primary);
    font-style: normal;
    font-weight: 800;
    min-height: 1.2em;
    display: inline-block;
}

.story-hero .founder-quote {
    font-size: 1.1rem; color: rgba(255,255,255,0.6);
    max-width: 560px; margin: 0 auto 0.5rem; font-style: italic; line-height: 1.8;
}

.story-hero .quote-attr {
    font-size: 0.85rem; color: var(--primary);
    font-weight: 600; margin-bottom: 3rem; display: block;
}

.scroll-hint {
    display: inline-flex; flex-direction: column; align-items: center; gap: 0.4rem;
    color: rgba(255,255,255,0.3); font-size: 0.75rem; letter-spacing: 0.12em;
    text-transform: uppercase; margin-top: 1.5rem; animation: bounce 2.2s infinite;
}

.scroll-hint svg {
    width: 20px; height: 20px; stroke: var(--primary);
    fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%       { transform: translateY(8px); opacity: 0.5; }
}

/* Origin */
.story-origin { background: var(--light); padding: 7rem 2rem; }
.story-origin .inner { max-width: 800px; margin: 0 auto; }

.section-label {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 1.2rem;
}

.story-origin h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--dark);
    font-weight: 800; line-height: 1.2; margin-bottom: 2rem;
}

.story-origin .body-text { font-size: 1.05rem; color: var(--text-light); line-height: 2; margin-bottom: 1.5rem; }
.story-origin .body-text strong { color: var(--text-dark); font-weight: 600; }

.personal-quote {
    background: var(--dark); border-radius: 20px;
    padding: 3rem 3.5rem; margin: 3rem 0; position: relative; overflow: hidden;
}

.personal-quote::before {
    content: '"'; font-size: 12rem; color: var(--primary); opacity: 0.08;
    position: absolute; top: -2.5rem; left: 1rem;
    font-family: Georgia, serif; line-height: 1; pointer-events: none;
}

.personal-quote blockquote {
    font-size: 1.35rem; color: white; font-style: italic;
    line-height: 1.85; position: relative; z-index: 1; margin-bottom: 1.5rem; font-weight: 300;
}

.personal-quote blockquote em { color: var(--primary); font-style: normal; font-weight: 600; }

.quote-author { display: flex; align-items: center; gap: 1rem; position: relative; z-index: 1; }

.quote-author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #22a56a);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; font-weight: 800; color: white; flex-shrink: 0;
}

.quote-author-info .name { color: white; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.1rem; }
.quote-author-info .role { color: var(--primary); font-size: 0.8rem; font-weight: 500; }

/* Pillars */
.story-pillars { background: var(--light-bg); padding: 7rem 2rem; }
.story-pillars .inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--dark); font-weight: 800; margin-bottom: 0.75rem; }
.section-header .lead { color: var(--text-light); font-size: 1.05rem; max-width: 540px; margin: 0 auto; line-height: 1.8; }

.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.pillar-card {
    background: var(--light); border-radius: 18px; padding: 2.5rem 2rem;
    border: 1px solid #ebebeb; box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: all 0.35s ease; position: relative; overflow: hidden;
}

.pillar-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px; background: var(--primary);
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}

.pillar-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(44,207,134,0.14); border-color: var(--primary); }
.pillar-card:hover::after { transform: scaleX(1); }

.pillar-icon {
    width: 58px; height: 58px; background: rgba(44,207,134,0.1);
    border-radius: 16px; display: flex; align-items: center;
    justify-content: center; font-size: 1.7rem; margin-bottom: 1.5rem;
}

.pillar-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.pillar-card p  { color: var(--text-light); font-size: 0.95rem; line-height: 1.85; }

.pillar-personal-note {
    display: flex; align-items: flex-start; gap: 0.75rem;
    background: rgba(44,207,134,0.07); border-radius: 10px; padding: 0.9rem 1rem; margin-top: 1.25rem;
}

.pillar-personal-note .note-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.pillar-personal-note p { font-size: 0.82rem; color: var(--secondary); font-weight: 600; line-height: 1.6; margin: 0; }

/* Founders */
.story-founders { background: var(--light); padding: 7rem 2rem; }
.story-founders .inner { max-width: 1000px; margin: 0 auto; }
.founders-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; margin-top: 4rem; }

.founder-avatar {
    width: 68px; height: 68px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #22a56a);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 1.25rem; letter-spacing: -1px;
}

.founder-role   { color: var(--primary); font-weight: 600; font-size: 0.88rem; margin-bottom: 0.2rem; }
.founder-creds  { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.25rem; }
.founder-bio    { color: var(--text-light); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.25rem; }

.founder-personal {
    background: rgba(44,207,134,0.07); border-radius: 10px; padding: 1rem 1.1rem;
    margin-bottom: 1.25rem; font-size: 0.88rem; color: var(--secondary);
    font-style: italic; line-height: 1.7; font-weight: 500;
}

.founder-skills   { border-top: 1px solid #e5e5e5; padding-top: 1.1rem; }
.skills-label     { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dark); margin-bottom: 0.6rem; }
.skills-tags      { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.skill-tag        { background: rgba(44,207,134,0.1); color: var(--secondary); font-size: 0.73rem; padding: 0.25rem 0.65rem; border-radius: 20px; font-weight: 600; }

.founder-contact-link { display: inline-block; margin-top: 1.1rem; font-size: 0.85rem; color: var(--primary); text-decoration: none; font-weight: 600; transition: opacity 0.2s; }
.founder-contact-link:hover { opacity: 0.75; }

/* Story CTA */
.story-cta { background: linear-gradient(135deg, var(--primary) 0%, #22a56a 100%); padding: 6rem 2rem; text-align: center; color: white; }
.story-cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.story-cta p  { font-size: 1.05rem; opacity: 0.88; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; }

.cta-button-dark {
    display: inline-block; background: var(--dark); color: white;
    padding: 0.9rem 2.4rem; border-radius: 8px; text-decoration: none;
    font-weight: 700; font-size: 1rem; transition: all 0.3s; border: 2px solid var(--dark);
}

.cta-button-dark:hover { background: transparent; color: var(--dark); }

/* Typewriter cursor */
#typewriter-text::after {
    content: '|';
    color: var(--primary);
    animation: blink 0.7s step-end infinite;
    margin-left: 2px;
    font-weight: 300;
}

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

/* ================================
   WORKFLOW PAGE — workflow.html
================================ */
.wf-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white; padding: 9rem 2rem 7rem;
    text-align: center; position: relative; overflow: hidden;
}

.wf-hero::before {
    content: ''; position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 40% 60%, rgba(44,207,134,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.wf-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1.1; max-width: 820px;
    margin: 0 auto 1.75rem; font-weight: 800; letter-spacing: -0.5px;
}

.wf-hero h1 em { color: var(--primary); font-style: normal; }

.wf-hero-sub {
    font-size: 1.15rem; color: rgba(255,255,255,0.7);
    max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.8;
}

.wf-container { max-width: 1100px; margin: 0 auto; }

.wf-problem { background: var(--light); padding: 7rem 2rem; }

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; margin-top: 3rem;
}

.problem-card {
    background: var(--light-bg); border-radius: 18px; padding: 2.5rem 2rem;
    border: 1px solid #ebebeb; transition: all 0.3s ease; position: relative; overflow: hidden;
}

.problem-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}

.problem-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: var(--primary); }
.problem-card:hover::before { transform: scaleX(1); }

.problem-icon  { font-size: 2.2rem; margin-bottom: 1.25rem; }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; line-height: 1.4; }
.problem-card p  { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }

.wf-approach { background: var(--light-bg); padding: 7rem 2rem; }

.steps-wrapper {
    display: flex; flex-direction: column; gap: 0;
    margin-top: 3rem; max-width: 780px; margin-left: auto; margin-right: auto;
}

.step-card {
    display: flex; gap: 2rem; align-items: flex-start;
    background: var(--light); border-radius: 18px; padding: 2rem 2.5rem;
    border: 1px solid #ebebeb; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease; position: relative;
}

.step-card:hover { border-color: var(--primary); box-shadow: 0 8px 28px rgba(44,207,134,0.12); transform: translateX(6px); }

.step-number {
    font-size: 2.8rem; font-weight: 900; color: rgba(44,207,134,0.15);
    line-height: 1; flex-shrink: 0; width: 56px; transition: color 0.3s;
}

.step-card:hover .step-number { color: var(--primary); }
.step-content { flex: 1; }
.step-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.step-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.step-content p  { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }

.step-connector {
    width: 2px; height: 32px;
    background: linear-gradient(to bottom, var(--primary), rgba(44,207,134,0.2));
    margin-left: 2rem; flex-shrink: 0;
}

.wf-stats {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    padding: 7rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem; margin-top: 3rem;
}

.stat-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 2.5rem 2rem; text-align: center;
    transition: all 0.3s ease; backdrop-filter: blur(4px);
}

.stat-card:hover { background: rgba(44,207,134,0.1); border-color: var(--primary); transform: translateY(-6px); }

.stat-number { font-size: 3.5rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 0.75rem; letter-spacing: -2px; }
.stat-label  { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

.wf-cta { background: var(--light); padding: 7rem 2rem; }
.wf-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 1.25rem; }
.wf-cta p  { font-size: 1.05rem; color: var(--text-light); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; }

/* ================================
   SERVICES PAGE — services.html
================================ */
.sv-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white; padding: 9rem 2rem 7rem;
    text-align: center; position: relative; overflow: hidden;
}

.sv-hero::before {
    content: ''; position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(44,207,134,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.sv-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1.1; max-width: 820px;
    margin: 0 auto 1.75rem; font-weight: 800; letter-spacing: -0.5px;
}

.sv-hero h1 em { color: var(--primary); font-style: normal; }

.sv-hero-sub {
    font-size: 1.15rem; color: rgba(255,255,255,0.7);
    max-width: 620px; margin: 0 auto; line-height: 1.8;
}

.sv-container { max-width: 1100px; margin: 0 auto; }

.orderqr-section {
    background: var(--dark); padding: 7rem 2rem;
    position: relative; overflow: hidden;
}

.orderqr-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.orderqr-header { text-align: center; margin-bottom: 4rem; }

.orderqr-badge {
    display: inline-block; background: rgba(44,207,134,0.15); color: var(--primary);
    border: 1px solid rgba(44,207,134,0.3); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 20px; margin-bottom: 1.5rem;
}

.orderqr-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
    color: white; margin-bottom: 1.25rem; line-height: 1.1;
}

.orderqr-header h2 span {
    color: rgba(255,255,255,0.35); font-weight: 400; font-size: 0.6em;
    display: block; margin-top: 0.3rem; letter-spacing: 0.05em;
}

.orderqr-tagline {
    font-size: 1.2rem; color: rgba(255,255,255,0.6);
    font-style: italic; max-width: 600px; margin: 0 auto; line-height: 1.7;
}

.orderqr-columns {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; margin-bottom: 4rem;
}

.orderqr-col {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 2.5rem; transition: all 0.3s;
}

.orderqr-col:hover { background: rgba(255,255,255,0.07); border-color: rgba(44,207,134,0.3); }

.col-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.orderqr-col h3 { font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.orderqr-col p  { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.75rem; }
.orderqr-col p strong { color: white; }

.orderqr-perks { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.orderqr-perks li { display: flex; align-items: flex-start; gap: 1rem; }
.perk-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.orderqr-perks li div strong { display: block; color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.orderqr-perks li div p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }

.orderqr-flow {
    background: rgba(44,207,134,0.06); border: 1px solid rgba(44,207,134,0.15);
    border-radius: 20px; padding: 3rem 2.5rem; text-align: center;
}

.orderqr-flow h3 { font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 0.5rem; }
.flow-sub { color: rgba(255,255,255,0.5); font-size: 1rem; margin-bottom: 2.5rem; font-style: italic; }

.flow-steps {
  display: flex;
  align-items: flex-start;  /* pins everything to top */
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.flow-step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; min-width: 120px; }

.flow-icon {
    width: 64px; height: 64px; background: rgba(44,207,134,0.1);
    border: 1px solid rgba(44,207,134,0.25); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; transition: all 0.3s;
}

.flow-step:hover .flow-icon { background: rgba(44,207,134,0.2); border-color: var(--primary); transform: scale(1.08); }

.flow-label { font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.flow-desc  { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.5; max-width: 110px; }
.flow-arrow {
  font-size: 1.5rem;
  color: rgba(44, 207, 134, 0.4);
  font-weight: 300;
  flex-shrink: 0;
  height: 64px;           /* ← matches .flow-icon height exactly */
  display: flex;
  align-items: center;    /* ← centers arrow inside that 64px height */
}
.sv-cta { background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%); padding: 7rem 2rem; color: white; }
.sv-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: white; line-height: 1.2; margin-bottom: 1.25rem; }
.sv-cta h2 em { color: var(--primary); font-style: normal; }
.sv-cta p  { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; }

/* ================================
   CONTACT PAGE — contact.html
================================ */
.ct-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white; padding: 9rem 2rem 6rem;
    text-align: center; position: relative; overflow: hidden;
}

.ct-hero::before {
    content: ''; position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(44,207,134,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.ct-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.1;
    max-width: 780px; margin: 0 auto 1.5rem; font-weight: 800; letter-spacing: -0.5px;
}

.ct-hero h1 em { color: var(--primary); font-style: normal; }

.ct-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; line-height: 1.8; }

.ct-section { background: var(--light-bg); padding: 6rem 2rem; }

.ct-container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 5rem; align-items: start;
}

.ct-info h2   { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--dark); margin-bottom: 1rem; line-height: 1.2; }
.ct-info > p  { color: var(--text-light); font-size: 1rem; line-height: 1.8; margin-bottom: 2.5rem; }

.ct-info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.ct-info-item  { display: flex; align-items: flex-start; gap: 1rem; }

.ct-info-icon { font-size: 1.4rem; flex-shrink: 0; width: 36px; text-align: center; margin-top: 0.1rem; }

.ct-info-item div   { display: flex; flex-direction: column; gap: 0.2rem; }
.ct-info-item strong { font-size: 0.78rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.08em; }
.ct-info-item a,
.ct-info-item span  { font-size: 0.98rem; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.ct-info-item a:hover { color: var(--primary); }

.ct-founders-contact { border-top: 1px solid #e5e5e5; padding-top: 1.75rem; }
.ct-founders-label   { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-light); margin-bottom: 1rem; }

.ct-founder-link {
    display: flex; align-items: center; gap: 0.9rem;
    text-decoration: none; padding: 0.75rem 0.85rem;
    border-radius: 12px; transition: background 0.2s; margin-bottom: 0.4rem;
}

.ct-founder-link:hover { background: rgba(44,207,134,0.08); }

.ct-founder-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #22a56a);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; font-weight: 800; color: white; flex-shrink: 0; letter-spacing: -0.5px;
}

.ct-founder-link > div { display: flex; flex-direction: column; gap: 0.15rem; }
.ct-founder-link strong { font-size: 0.92rem; color: var(--dark); font-weight: 700; }
.ct-founder-link span   { font-size: 0.78rem; color: var(--primary); font-weight: 500; }

.ct-form-wrap {
    background: var(--light); border-radius: 24px; padding: 3rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07); border: 1px solid #ebebeb;
}

.ct-form  { display: flex; flex-direction: column; gap: 1.5rem; }
.ct-field { display: flex; flex-direction: column; gap: 0.5rem; }

.ct-field label { font-size: 0.83rem; font-weight: 700; color: var(--dark); letter-spacing: 0.04em; text-transform: uppercase; }
.required { color: var(--primary); }

.ct-field input,
.ct-field textarea,
.ct-country-select {
    background: var(--light-bg); border: 1.5px solid #e0e0e0;
    border-radius: 10px; padding: 0.85rem 1.1rem; font-size: 0.95rem;
    color: var(--text-dark); font-family: inherit;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none; width: 100%; box-sizing: border-box;
}

.ct-field input:focus,
.ct-field textarea:focus,
.ct-country-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44,207,134,0.12);
    background: white;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #bbb; }

.ct-field textarea { resize: vertical; min-height: 130px; line-height: 1.7; }

.ct-phone-row { display: flex; gap: 0.75rem; align-items: stretch; }

.ct-country-select {
    width: auto; min-width: 190px; max-width: 220px;
    flex-shrink: 0; cursor: pointer; appearance: auto;
}

.ct-phone-row input[type="tel"] { flex: 1; min-width: 0; }

.ct-submit {
    display: flex; align-items: center; justify-content: center;
    gap: 0.65rem; background: var(--primary); color: var(--dark);
    border: 2px solid var(--primary); border-radius: 12px;
    padding: 1rem 2rem; font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s; font-family: inherit;
    width: 100%; margin-top: 0.5rem; letter-spacing: 0.02em;
}

.ct-submit:hover { background: transparent; color: var(--primary); }
.ct-submit svg { transition: transform 0.3s; }
.ct-submit:hover svg { transform: translateX(4px) translateY(-2px); }

.ct-polish {
    display: flex; align-items: center; justify-content: center;
    gap: 0.5rem; width: 100%; padding: 0.85rem 2rem;
    background: transparent; color: var(--primary);
    border: 2px dashed var(--primary); border-radius: 12px;
    font-size: 0.95rem; font-weight: 600; font-family: inherit;
    cursor: pointer; transition: all 0.3s; letter-spacing: 0.02em;
}

.ct-polish:hover { background: rgba(44, 207, 134, 0.08); border-style: solid; }

/* ================================
   RESPONSIVE — 768px
================================ */
@media (max-width: 768px) {
    .burger-btn  { display: flex !important; }
    .nav-menu    { display: none !important; }

    nav          { padding: 0.75rem 1rem; gap: 0.5rem; }
    nav .logo    { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
    .nav-logo-img { width: 90px !important; height: 35px !important; }

    .hero        { padding: 3rem 1.25rem; }
    .hero h1     { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 1rem; }
    .hero p      { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .cta-button  { padding: 0.65rem 1.75rem; font-size: 0.9rem; }

    .workflow-section   { padding: 4rem 1.25rem; }
    .workflow-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .workflow-content h2 { font-size: clamp(1.4rem, 3.5vw, 1.8rem); margin-bottom: 1rem; }
    .workflow-content p  { font-size: 0.95rem; }
    .workflow-stats      { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .stat-box            { padding: 1.25rem; }
    .stat-box .number    { font-size: 2rem; }
    .stat-box .label     { font-size: 0.8rem; }

    .services-section  { padding: 4rem 1.25rem; }
    .services-grid     { grid-template-columns: 1fr; gap: 1.5rem; }
    .section-title     { font-size: clamp(1.4rem, 3.5vw, 1.8rem); margin-bottom: 0.75rem; }
    .section-subtitle  { font-size: 0.95rem; margin-bottom: 2rem; }
    .service-card      { padding: 1.5rem; }
    .service-icon      { font-size: 2.2rem; }
    .service-card h3   { font-size: 1.05rem; }
    .service-card p    { font-size: 0.9rem; }

    .footer { padding: 2rem 1.25rem; font-size: 0.8rem; line-height: 1.6; }
    .splash-logo { width: 250px; height: 250px; }

    .sv-container,
    .wf-container,
    .ct-container { padding: 0 1.25rem; }

    .wf-problem, .wf-approach, .wf-stats, .wf-cta,
    .orderqr-section, .services-section, .sv-cta {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    html { scroll-padding-top: 70px; }

    .ct-hero     { padding: 4.5rem 1.25rem 3.5rem; }
    .ct-hero h1  { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 1rem; }
    .ct-hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
    .ct-section  { padding: 4rem 1.25rem; }
    .ct-container { gap: 2.5rem; }
    .ct-info h2  { font-size: clamp(1.2rem, 3.5vw, 1.6rem); margin-bottom: 0.75rem; }
    .ct-info > p { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .ct-form-wrap { padding: 1.75rem 1.25rem; }
    .ct-form     { gap: 1.25rem; }
    .ct-field label { font-size: 0.78rem; }
    .ct-field input,
    .ct-field textarea,
    .ct-country-select { padding: 0.7rem 0.85rem; font-size: 0.88rem; }
    .ct-field textarea { min-height: 110px; }
    .ct-phone-row { flex-direction: column; gap: 0.5rem; }
    .ct-country-select { width: 100%; }
}

/* ================================
   RESPONSIVE — 960px (contact)
================================ */
@media (max-width: 960px) {
    .ct-section   { padding: 5rem 1.5rem; }
    .ct-container { grid-template-columns: 1fr; gap: 3.5rem; }
    .ct-form-wrap { padding: 2.25rem 1.75rem; }
}

/* ================================
   RESPONSIVE — 480px
================================ */
@media (max-width: 480px) {
    nav          { padding: 0.65rem 0.85rem; gap: 0.4rem; }
    .nav-logo-img { width: 75px !important; height: 30px !important; }

    section      { padding: 3rem 1rem !important; }

    .hero, .story-hero, .wf-hero, .sv-hero, .ct-hero { padding: 3rem 1rem 2.5rem !important; }
    .hero h1, .story-hero h1, .wf-hero h1, .sv-hero h1, .ct-hero h1 { font-size: clamp(1.3rem, 5vw, 1.8rem); margin-bottom: 0.75rem; }
    .hero p, .story-hero .founder-quote, .wf-hero-sub, .sv-hero-sub, .ct-hero-sub { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }

    .cta-button, .cta-button-dark { padding: 0.6rem 1.4rem; font-size: 0.85rem; width: auto; white-space: nowrap; }

    .services-grid, .pillars-grid, .founders-grid,
    .problem-grid, .stats-grid { grid-template-columns: 1fr !important; gap: 1.25rem !important; }

    .service-card, .pillar-card, .founder-card, .problem-card,
    .stat-card, .orderqr-col, .step-card { padding: 1.25rem !important; }

    .service-icon, .pillar-icon, .problem-icon { font-size: 1.8rem; }

    h2 { font-size: clamp(1.3rem, 4vw, 1.6rem) !important; }
    h3 { font-size: clamp(1rem, 3vw, 1.2rem) !important; }

    .workflow-container { gap: 1.5rem; }
    .workflow-stats     { grid-template-columns: 1fr; gap: 1rem; }
    .stat-box .number   { font-size: 1.5rem; }

    .story-origin, .story-pillars, .story-founders { padding: 3rem 1rem !important; }
    .personal-quote   { padding: 1.5rem 1rem; margin: 2rem 0; }
    .personal-quote blockquote { font-size: 1rem; }
    .story-cta        { padding: 3rem 1rem !important; }
    .story-cta h2     { font-size: 1.4rem; margin-bottom: 0.75rem; }
    .story-cta p      { font-size: 0.9rem; }

    .step-card        { flex-direction: column; gap: 1rem; text-align: center; }
    .step-number      { font-size: 2rem; width: auto; }
    .step-connector   { display: none; }

    .orderqr-section  { padding: 3rem 1rem !important; }
    .orderqr-columns  { gap: 1.25rem; }
    .orderqr-header h2 { font-size: 1.4rem; }
    .orderqr-tagline  { font-size: 1rem; }
    .flow-steps       { flex-direction: column; gap: 0.75rem; }
    .flow-arrow       { display: none; }
    .flow-step        { min-width: auto; width: 100%; }

    .ct-container     { gap: 2rem; }
    .ct-form-wrap     { padding: 1.5rem 1rem; }
    .ct-phone-row     { flex-direction: column; gap: 0.5rem; }
    .ct-country-select { width: 100%; min-width: unset; }
    .ct-field input,
    .ct-field textarea,
    .ct-country-select { font-size: 16px; }

    .sv-container, .wf-container { padding: 0 1rem; }

    .ct-hero     { padding: 3.5rem 1rem 2.75rem; }
    .ct-hero h1  { font-size: clamp(1.2rem, 5vw, 1.6rem); margin-bottom: 0.75rem; }
    .ct-hero-sub { font-size: 0.9rem; }
    .ct-section  { padding: 3rem 1rem; }
    .ct-info h2  { font-size: 1.2rem; }
    .ct-form     { gap: 1rem; }
}

/* ================================
   RESPONSIVE — 375px
================================ */
@media (max-width: 375px) {
    section      { padding: 2.5rem 0.75rem !important; }
    .hero, .story-hero, .wf-hero, .sv-hero, .ct-hero { padding: 2.5rem 0.75rem !important; }

    nav          { padding: 0.6rem 0.7rem; }
    .nav-logo-img { width: 65px !important; height: 26px !important; }

    h1 { font-size: 1.3rem !important; }
    h2 { font-size: 1.2rem !important; }
    h3 { font-size: 1rem !important; }
    body { font-size: 14px; }

    .cta-button, .cta-button-dark { padding: 0.55rem 1.2rem; font-size: 0.8rem; }

    .service-card, .pillar-card, .founder-card, .problem-card,
    .stat-card, .orderqr-col, .step-card { padding: 1rem !important; }

    .story-origin .inner { margin: 0; }
    .personal-quote      { padding: 1.25rem 0.75rem; }
    .personal-quote blockquote { font-size: 0.95rem; }

    .founder-avatar { width: 56px; height: 56px; font-size: 1.1rem; }
    .skill-tag      { font-size: 0.65rem; padding: 0.2rem 0.5rem; }

    .sv-container, .wf-container { padding: 0 0.75rem; }

    .ct-hero     { padding: 3rem 0.75rem; }
    .ct-form-wrap { padding: 1.25rem 0.75rem; }
}

/* ================================
   FOCUS — accessibility
================================ */
button:focus,
button:focus-visible {
    outline: none;
    box-shadow: none;
}

a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    border-radius: 4px;
}
/* ================================
   RESPONSIVE — MOBILE FIRST
   Breakpoint: 768px
================================ */
@media (max-width: 768px) {

  /* ── NAV ── */
  nav ul { display: none; }
  .burger-btn { display: flex; }
  .nav-logo-img { width: 120px; height: 48px; }

  /* ── HERO (index.html) ── */
  .hero { padding: 4rem 1.25rem; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }

  /* ── TRUST STATS BAR ── */
  .stats-bar-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
  }

  /* ── SERVICES GRID ── */
  .services-section { padding: 3rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }

  /* ── WORKFLOW TEASER ── */
  .workflow-section { padding: 3rem 1.25rem; margin: 0; }
  .workflow-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .workflow-stats { grid-template-columns: 1fr 1fr; }
  .workflow-content h2 { font-size: 1.6rem; }

  /* ── PILLARS ── */
  .story-pillars { padding: 3.5rem 1.25rem; }
  .pillars-grid { grid-template-columns: 1fr; }

  /* ── FOUNDERS ── */
  .story-founders { padding: 3.5rem 1.25rem; }
  .founders-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }

  /* ── STORY HERO ── */
  .story-hero { padding: 5rem 1.25rem 3.5rem; }
  .story-hero h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .story-hero .founder-quote { font-size: 0.95rem; }

  /* ── STORY ORIGIN ── */
  .story-origin { padding: 3.5rem 1.25rem; }
  .personal-quote { padding: 2rem 1.5rem; }
  .personal-quote blockquote { font-size: 1.05rem; }

  /* ── STORY CTA ── */
  .story-cta { padding: 3.5rem 1.25rem; }

  /* ── WORKFLOW PAGE ── */
  .wf-hero { padding: 5rem 1.25rem 3rem; }
  .wf-problem { padding: 3.5rem 1.25rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .wf-approach { padding: 3.5rem 1.25rem; }
  .step-card { padding: 1.5rem; gap: 1rem; }
  .step-card:hover { transform: none; }
  .step-number { font-size: 2rem; width: 40px; }
  .wf-stats { padding: 3.5rem 1.25rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.5rem; }
  .wf-cta { padding: 3.5rem 1.25rem; text-align: center; }

  /* ── SERVICES PAGE ── */
  .sv-hero { padding: 5rem 1.25rem 3rem; }
  .orderqr-section { padding: 3.5rem 1.25rem; }
  .orderqr-columns { grid-template-columns: 1fr; }
  .flow-steps { gap: 0.5rem; }
  .flow-arrow { display: none; }
  .flow-step { min-width: 80px; }
  .flow-icon { width: 48px; height: 48px; font-size: 1.2rem; }
  .sv-cta { padding: 3.5rem 1.25rem; text-align: center; }

  /* ── CONTACT PAGE ── */
  .ct-hero { padding: 5rem 1.25rem 3rem; }
  .ct-section { padding: 3rem 1.25rem; }
  .ct-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ct-form-wrap { padding: 1.75rem 1.25rem; }
  .ct-phone-row { flex-direction: column; }
  .ct-country-select { max-width: 100%; width: 100%; }

  /* ── FOOTER ── */
  .footer { padding: 1.5rem 1.25rem; font-size: 0.82rem; }

  /* ── MOBILE TAP HIGHLIGHT ── */
  @media (hover: none) and (pointer: coarse) {
    .service-card:active,
    .pillar-card:active,
    .founder-card:active,
    .problem-card:active,
    .stat-card:active,
    .orderqr-col:active,
    .step-card:active {
      border-color: var(--primary);
      box-shadow: 0 0 0 2px rgba(44, 207, 134, 0.25);
      transform: scale(0.98);
    }
  }
}

/* ================================
   SMALL PHONES — 480px
================================ */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .workflow-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; letter-spacing: -1px; }
  .section-title { font-size: 1.6rem; }
  .story-hero h1 { font-size: 1.65rem; }
  .cta-button, .cta-button-dark {
    width: 100%;
    text-align: center;
    display: block;
  }
  .personal-quote { padding: 1.5rem 1.25rem; }
  .personal-quote blockquote { font-size: 0.95rem; }
  .orderqr-flow { padding: 1.75rem 1rem; }
  .flow-steps { flex-direction: column; align-items: center; }
  .flow-arrow { display: none; }
}
nav a.active { color: var(--primary); }
