/* ════════════════════════════════════════
   ROMANO.DEV — Stylesheet
   ════════════════════════════════════════ */

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

/* ─── Variables ─── */
:root {
    --bg:           #06060E;
    --surface:      #0D0D1A;
    --surface-2:    #131324;
    --accent:       #00FF87;
    --accent-dim:   rgba(0, 255, 135, 0.1);
    --cyan:         #00D4FF;
    --text:         #F0F0F5;
    --text-dim:     #B0B0C8;
    --muted:        #6A6A8A;
    --border:       rgba(255, 255, 255, 0.07);
    --border-2:     rgba(255, 255, 255, 0.12);
    --radius:       16px;
    --radius-sm:    10px;
    --ff-display:   'Syne', sans-serif;
    --ff-body:      'DM Sans', sans-serif;
    --max-w:        1200px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Grain texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: overlay;
}

/* ─── Utilities ─── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--accent);
    color: #000;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
    background: #00e878;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 255, 135, 0.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--text-dim);
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1px solid var(--border-2);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: #000;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, box-shadow 0.2s;
}
.btn-nav:hover {
    background: #00e878;
    box-shadow: 0 4px 20px rgba(0, 255, 135, 0.3);
}

.btn-xl {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* ─── Section Utilities ─── */
.section { padding: 120px 0; position: relative; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 3rem;
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
    background: rgba(6, 6, 14, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 1.5rem;
}

.logo {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.03em;
    margin-right: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-mobile-cta { display: none; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 36px;
    height: 36px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: float-orb 8s ease-in-out infinite;
}
.orb-a {
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(0,255,135,0.14) 0%, transparent 70%);
    top: -180px; right: -180px;
    animation-delay: 0s;
}
.orb-b {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
    bottom: -120px; left: -120px;
    animation-delay: -3s;
}
.orb-c {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(0,255,135,0.07) 0%, transparent 70%);
    top: 45%; left: 38%;
    animation-delay: -6s;
}
@keyframes float-orb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-28px) scale(1.04); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 135, 0.08);
    border: 1px solid rgba(0, 255, 135, 0.2);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.hero-hl { color: var(--accent); }

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Code Window */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.code-window {
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    overflow: hidden;
    width: 100%;
    max-width: 440px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0,255,135,0.04),
        0 0 60px rgba(0,255,135,0.06);
}
.window-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.75rem 1rem;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
}
.win-dot { width: 12px; height: 12px; border-radius: 50%; }
.d-red    { background: #FF5F57; }
.d-yellow { background: #FEBC2E; }
.d-green  { background: #28C840; }
.win-title {
    font-size: 0.78rem;
    color: var(--muted);
    margin-left: 0.5rem;
    font-family: 'Courier New', monospace;
}

.code-body {
    padding: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.88rem;
    line-height: 1.85;
    color: var(--text-dim);
}
.code-body p { margin: 0; }
.code-gap { margin-top: 0.6rem !important; }

.c-purple { color: #C792EA; }
.c-blue   { color: #82AAFF; }
.c-lime   { color: var(--accent); }
.c-orange { color: #F78C6C; }
.c-yellow { color: #FFCB6B; }
.c-muted  { color: var(--muted); font-style: italic; }

.cursor-blink {
    display: inline-block;
    color: var(--accent);
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Floating Tags */
.float-tag {
    position: absolute;
    background: var(--surface-2);
    border: 1px solid var(--border-2);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.tag-a { top: -18px; left: -30px;  animation: float-tag 6s ease-in-out infinite; }
.tag-b { bottom: 55px; left: -55px; animation: float-tag 6s ease-in-out infinite; animation-delay: -2s; }
.tag-c { top: 38%; right: -45px;  animation: float-tag 6s ease-in-out infinite; animation-delay: -4s; }
@keyframes float-tag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}
.hero-scroll span {
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--muted), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
    transform-origin: top;
}
@keyframes scroll-anim {
    0%   { opacity: 0; transform: scaleY(0); }
    40%  { opacity: 1; }
    100% { opacity: 0; transform: scaleY(1); }
}

/* ─── SERVICES ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0,255,135,0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(0,255,135,0.22); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }

.s-featured {
    grid-row: span 2;
    background: linear-gradient(145deg, var(--surface) 0%, rgba(0,255,135,0.04) 100%);
    border-color: rgba(0,255,135,0.18);
}
.s-wide { grid-column: span 2; }

.s-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.s-badge {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--accent);
    background: rgba(0,255,135,0.1);
    border: 1px solid rgba(0,255,135,0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}
.s-icon {
    font-size: 1.9rem;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}
.s-featured .s-icon { margin-bottom: 0; }

.service-card h3 {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.service-card p {
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.s-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.s-features li {
    font-size: 0.835rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.s-features li::before {
    content: '→';
    color: var(--accent);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ─── WHY ─── */
.why-section { overflow: hidden; }
.why-orb {
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 1;
}
.why-left .section-title { margin-bottom: 1.25rem; }
.why-desc {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}
.why-right { display: flex; flex-direction: column; }
.why-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child  { border-bottom: none; padding-bottom: 0; }
.why-icon {
    font-size: 1.35rem;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface-2);
    border-radius: 10px;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.why-item:hover .why-icon { transform: scale(1.1); }
.why-item h4 {
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
}
.why-item p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── PROCESS ─── */
.process-section {
    background: var(--surface);
    overflow: hidden;
}
.process-section::before,
.process-section::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-2), transparent);
}
.process-section::before { top: 0; }
.process-section::after  { bottom: 0; }

.process-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.process-step {
    flex: 1;
    padding: 2.5rem 1.5rem;
    text-align: center;
}
.step-num {
    font-family: var(--ff-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(0,255,135,0.14);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.3s;
}
.process-step:hover .step-num { color: rgba(0,255,135,0.4); }
.process-step h4 {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.process-step p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.65;
}
.process-arrow {
    align-self: center;
    font-size: 1.4rem;
    color: rgba(0,255,135,0.25);
    padding-bottom: 1.5rem;
    flex-shrink: 0;
}

/* ─── CONTACT ─── */
.contact-section {
    overflow: hidden;
    text-align: center;
}
.contact-orb-a {
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0,255,135,0.11) 0%, transparent 65%);
    top: -250px; left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.contact-orb-b {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.contact-inner { position: relative; z-index: 1; }
.contact-title {
    font-family: var(--ff-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 1.25rem;
}
.contact-sub {
    font-size: 1.05rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}
.contact-cards {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    padding: 1.25rem 1.75rem;
    text-decoration: none;
    min-width: 280px;
    transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.contact-card:hover {
    border-color: rgba(0,255,135,0.3);
    background: rgba(0,255,135,0.04);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.cc-icon { font-size: 1.5rem; }
.cc-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}
.cc-label {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.cc-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}
.cc-arrow {
    font-size: 1.1rem;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.2s, transform 0.2s;
}
.contact-card:hover .cc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ─── CONTACT FORM ─── */
.contact-form {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.cf-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    text-align: left;
}
.cf-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.cf-field input {
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--ff-body);
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.cf-field input::placeholder { color: var(--muted); }
.cf-field input:focus {
    border-color: rgba(0,255,135,0.45);
    box-shadow: 0 0 0 3px rgba(0,255,135,0.08);
}
.cf-field input.error { border-color: #ff5f57; }
.cf-submit { width: 100%; justify-content: center; }
.cf-note {
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    margin-top: -0.25rem;
}
.cf-error {
    font-size: 0.82rem;
    color: #ff5f57;
    text-align: center;
    margin-top: -0.25rem;
}
.cf-error a { color: #ff5f57; }
.cf-field input:disabled,
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.cf-success {
    text-align: center;
    padding: 3rem 0;
}
.cf-success-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.cf-success h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
}
.cf-success p { font-size: 0.95rem; color: var(--text-dim); }

/* ─── FOOTER ─── */
.footer { padding: 2rem 0; border-top: 1px solid var(--border); }
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}
.footer-contact {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.footer-contact a {
    font-size: 0.82rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact a:hover { color: var(--accent); }
.footer-text { font-size: 0.8rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

@media (max-width: 768px) {
    .cf-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-contact { justify-content: center; }
    .footer-links { justify-content: center; }
}

/* ─── WHATSAPP BUTTON ─── */
.wa-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

@media (max-width: 768px) {
    .wa-btn span { display: none; }
    .wa-btn { padding: 0.85rem; border-radius: 50%; bottom: 1.5rem; right: 1.5rem; }
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-sub { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }

    .services-grid { grid-template-columns: 1fr 1fr; }
    .s-featured { grid-row: auto; }
    .s-wide { grid-column: span 2; }

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

    .process-grid { flex-direction: column; align-items: stretch; }
    .process-arrow { display: none; }
    .process-step { text-align: left; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
    .process-step:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .section-title { margin-bottom: 2rem; }

    /* Nav mobile */
    .nav-links { display: none; }
    .nav-desktop-cta { display: none; }
    .hamburger { display: flex; }
    .nav-mobile-cta { display: flex !important; }

    .nav.mobile-open {
        background: rgba(6, 6, 14, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
    }
    .nav.mobile-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: rgba(6, 6, 14, 0.98);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 2rem;
        gap: 1.25rem;
    }

    .hero { padding: 120px 0 80px; }
    .hero-title { font-size: clamp(2.75rem, 11vw, 4rem); }

    .services-grid { grid-template-columns: 1fr; }
    .s-wide { grid-column: span 1; }

    .why-grid { gap: 2.5rem; }

    .contact-card { min-width: unset; width: 100%; }
    .contact-cards { flex-direction: column; align-items: center; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }

    .float-tag { display: none; }
}
