/* ===================================
   INOUT INDONESIA — Company Profile
   Fullpage Scroll + Cinematic Animations
   =================================== */

/* === CSS Custom Properties === */
:root {
    --bg-primary: #1e1e1e;
    --bg-secondary: #252525;
    --bg-card: #2a2a2a;
    --bg-card-hover: #333333;

    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    --accent: #e31e24;
    --accent-light: #ff3b42;
    --accent-dark: #b5161a;
    --accent-glow: rgba(227, 30, 36, 0.25);

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --fp-transition: 0.95s cubic-bezier(0.76, 0, 0.24, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow: hidden;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    height: 100%;
    cursor: none;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

.accent { color: var(--accent); }


/* ===========================
   CINEMATIC LOADER
   =========================== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: loaderLogoReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

@keyframes loaderLogoReveal {
    0% { opacity: 0; transform: scale(0.85); filter: blur(10px); }
    100% { opacity: 1; transform: scale(1); filter: blur(0); }
}



.loader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: loaderFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes loaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}


/* ===========================
   CUSTOM CURSOR
   =========================== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
    mix-blend-mode: difference;
}

.cursor.hover {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    mix-blend-mode: normal;
    opacity: 0.4;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(227, 30, 36, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
}

.cursor-follower.hover {
    width: 55px;
    height: 55px;
    border-color: rgba(227, 30, 36, 0.2);
    opacity: 0.6;
}


/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    z-index: 9990;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--accent-glow);
}


/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 36px;
    width: auto;
    transition: var(--transition);
}

.nav-logo:hover img { transform: scale(1.05); }

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

.nav-link {
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: var(--transition);
    cursor: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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


/* ===========================
   FULLPAGE DOT NAVIGATION
   =========================== */
.dot-nav {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: none;
    transition: var(--transition);
    padding: 0;
}

.dot:hover,
.dot.active {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    transform: scale(1.3);
}

.dot-label {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.9);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.dot:hover .dot-label {
    opacity: 1;
}


/* ===========================
   FULLPAGE SCROLL SYSTEM
   =========================== */
.fullpage-wrapper {
    height: 100vh;
    transition: transform var(--fp-transition);
    will-change: transform;
}

.fp-section {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-section-inner {
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    padding: 100px 0 60px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fp-section-inner::-webkit-scrollbar {
    display: none;
}


/* ===========================
   REVEAL ANIMATIONS
   =========================== */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="up"] { transform: translateY(50px); }
[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}


/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 0 24px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(227, 30, 36, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(227, 30, 36, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(227, 30, 36, 0.04) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(227, 30, 36, 0.08);
    border: 1px solid rgba(227, 30, 36, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 32px;
    letter-spacing: 0.03em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title-line { display: block; }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.scroll-line {
    width: 2px;
    height: 36px;
    background: var(--accent);
    border-radius: 1px;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { height: 0; opacity: 0; }
    30% { height: 36px; opacity: 1; }
    70% { height: 36px; opacity: 1; }
    100% { height: 0; opacity: 0; }
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}


/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: none;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-light);
    box-shadow: 0 0 50px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}


/* ===========================
   SECTION COMMON
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(227, 30, 36, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(227, 30, 36, 0.15);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}


/* ===========================
   ABOUT
   =========================== */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.counter-card {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-suffix {
    font-size: 1.6rem;
    color: var(--accent);
    opacity: 0.7;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}


/* ===========================
   SERVICES
   =========================== */
.services {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.service-card {
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.service-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before { transform: scaleX(1); }

/* featured card class removed — all cards identical */

.service-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 30, 36, 0.08);
    border-radius: var(--radius-sm);
    color: var(--accent);
    margin-bottom: 14px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(227, 30, 36, 0.15);
    transform: scale(1.05);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-subtitle {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-list li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.7;
}


/* ===========================
   WHY US
   =========================== */
.why-us {
    background: var(--bg-secondary);
}

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

.why-card {
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-slow);
}

.why-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(227, 30, 36, 0.08);
    border-radius: var(--radius-md);
    color: var(--accent);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: rgba(227, 30, 36, 0.15);
    transform: scale(1.1);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Workflow Inline */
.workflow-inline {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.workflow-step {
    text-align: center;
    flex: 1;
}

.step-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 6px;
}

.workflow-step h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
}

.workflow-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
    flex-shrink: 0;
}


/* ===========================
   CONTACT
   =========================== */
.contact {
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.contact .section-title {
    text-align: left;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 16px 0 28px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-link { cursor: none; }

.contact-link:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    flex-shrink: 0;
}

.contact-icon.whatsapp { background: rgba(37, 211, 102, 0.1); color: #25d366; }
.contact-icon.instagram { background: rgba(225, 48, 108, 0.1); color: #e1306c; }

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.contact-value {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
}

/* WhatsApp CTA big */
.btn-wa-big {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
}

/* Instagram Embed Wrapper */
.instagram-embed-wrapper {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: transparent;
    display: flex;
    justify-content: center;
}

/* Footer Block */
.footer-block {
    text-align: center;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    width: 100%;
}

.footer-logo-big {
    height: 56px;
    width: auto;
    margin-bottom: 16px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-logo-big:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-block p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}


/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Disable custom cursor on mobile/tablet */
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none !important; }
    .nav-link, .nav-toggle, .btn, .dot, .contact-link { cursor: pointer; }

    .container { padding: 0 36px; }

    .dot-nav { right: 14px; gap: 14px; }
    .dot { width: 10px; height: 10px; }
    .dot-label { display: none; }

    .nav-links {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        background: rgba(30, 30, 30, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        border: none;
    }

    .nav-links.active { 
        opacity: 1; 
        visibility: visible;
    }

    .nav-link {
        font-size: 1.8rem;
        font-family: var(--font-display);
        font-weight: 700;
        padding: 10px;
    }

    .nav-toggle { display: flex; }

    .hero { padding: 0 36px; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-scroll-indicator { bottom: 20px; }

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

    .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    .workflow-steps { flex-wrap: wrap; gap: 8px; }
    .workflow-connector { display: none; }

    .fp-section-inner { padding: 80px 0 40px; }

    .contact-wrapper { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 28px; }
    .hero { padding: 0 28px; }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn { justify-content: center; }

    .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }

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

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

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
