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

/* Override WP block gap for main sections */
:root :where(.is-layout-flow) > .hero,
:root :where(.is-layout-flow) > .dark-section,
:root :where(.is-layout-flow) > .about,
:root :where(.is-layout-flow) > .murmlo,
:root :where(.is-layout-flow) > .portfolio,
:root :where(.is-layout-flow) > .testimonials,
:root :where(.is-layout-flow) > .services,
:root :where(.is-layout-flow) > .contact-section,
:root :where(.is-layout-flow) > .footer {
    margin-block-start: 0;
}

:root {
    --white: #ffffff;
    --bg: #ffffff;
    --bg-light: #f7f8fa;
    --bg-dark: #1a1d27;
    --text: #1a1d27;
    --text-secondary: #5a5d6e;
    --text-light: #8b8e9c;
    --accent: #f16232;
    --accent-hover: #e04f1f;
    --accent-light: rgba(241,98,50,0.08);
    --border: #e8eaed;
    --border-light: #f0f1f3;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

::selection {
    background: var(--accent);
    color: white;
}
::-moz-selection {
    background: var(--accent);
    color: white;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background: var(--accent);
    color: white;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(241,98,50,0.3);
}
.btn-primary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
    background: var(--bg-dark);
    color: white;
}
.btn-secondary:hover {
    background: #2a2d3a;
    transform: translateY(-1px);
}
.btn-secondary:focus-visible {
    outline: 2px solid var(--bg-dark);
    outline-offset: 2px;
}
.btn-secondary:active { transform: translateY(0); }
.btn-outline {
    border-color: var(--border);
    color: var(--text);
    background: white;
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-outline:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 0.95rem;
}

.tag {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}

.section-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin: 0.4rem 0 1rem;
}

/* ── Reveal ── */
.r { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.r.v { opacity: 1; transform: none; }
.r1 { transition-delay: .07s; }
.r2 { transition-delay: .14s; }
.r3 { transition-delay: .21s; }
.r4 { transition-delay: .28s; }

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 0;
}
.admin-bar .nav {
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar .nav {
        top: 46px;
    }
}
.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.08em;
}
.nav-logo span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.nav-hire {
    padding: 0.45rem 1.1rem !important;
    background: var(--accent) !important;
    color: white !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
}
.nav-hire:hover {
    background: var(--accent-hover) !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    margin: 4px 0;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 1px;
}
.hamburger.on span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.on span:nth-child(2) { opacity: 0; }
.hamburger.on span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.mob-menu.open { display: flex; }
.mob-menu a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}
.mob-menu a:hover { color: var(--accent); }

/* ═══════════════════════════════════════
   HERO — animated background lines
   ═══════════════════════════════════════ */
.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 90vw;
    z-index: 0;
    pointer-events: none;
}
.hero-lines .line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(26, 29, 39, 0.06);
    overflow: hidden;
}
.hero-lines .line::after {
    content: '';
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(241,98,50,0) 0%, rgba(241,98,50,0.45) 75%, rgba(241,98,50,0.45) 100%);
    animation: heroLineDrop 7s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.hero-lines .line:nth-child(1) { left: 10%; }
.hero-lines .line:nth-child(1)::after { animation-delay: 2s; }
.hero-lines .line:nth-child(2) { left: 30%; }
.hero-lines .line:nth-child(2)::after { animation-delay: 0s; }
.hero-lines .line:nth-child(3) { left: 50%; }
.hero-lines .line:nth-child(3)::after { animation-delay: 3.5s; }
.hero-lines .line:nth-child(4) { left: 70%; }
.hero-lines .line:nth-child(4)::after { animation-delay: 1.5s; }
.hero-lines .line:nth-child(5) { left: 90%; }
.hero-lines .line:nth-child(5)::after { animation-delay: 4s; }
@keyframes heroLineDrop {
    0%   { top: -50%; }
    100% { top: 110%; }
}

/* ═══════════════════════════════════════
   HERO — photo as background, right side
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    padding: 0;
    background: var(--bg);
    overflow: hidden;
    min-height: min(100vh, 80vh);
    max-height: 760px;
    display: flex;
    align-items: center;
}
.hero > .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 1.4rem;
    letter-spacing: -0.03em;
}
.hero h1 span { color: var(--accent); }
.typewriter {
    display: inline-block;
    vertical-align: baseline;
}
.typewriter::after {
    content: '|';
    display: inline-block;
    color: var(--accent);
    animation: blink 0.6s step-end infinite;
    margin-left: -4px;
    font-weight: 300;
}
@keyframes blink {
    50% { opacity: 0; }
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 0 2.5rem;
}

.hero-form {
    display: flex;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}
.hero-form input {
    flex: 1;
    padding: 1.15rem 1.6rem;
    font-family: var(--font);
    font-size: 1.05rem;
    border: none;
    outline: none;
    background: white;
    color: var(--text);
}
.hero-form input::placeholder { color: var(--text-light); }
.hero-form input:focus { outline: none; }
.hero-form button {
    padding: 1.15rem 2.4rem;
    background: var(--accent);
    color: white;
    border: none;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.hero-form button:hover { background: var(--accent-hover); }
.hero-form button:focus-visible { outline: 2px solid var(--accent-hover); outline-offset: -2px; }
.hero-form button:active { transform: scale(0.98); }
.hero-hint {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 0.85rem;
}

/* Notch + Scroll indicator */
.hero-notch {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 68px;
    z-index: 3;
}
.hero-notch-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #12141c;
}
.scroll-indicator {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 13px;
    position: relative;
}
.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
    0%   { opacity: 1; transform: translateY(0); }
    60%  { opacity: 0; transform: translateY(14px); }
    100% { opacity: 0; transform: translateY(14px); }
}
.scroll-text {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* Hero photo — positioned right, bleeds to viewport edge */
.hero-bg-photo {
    position: absolute;
    right: -25%;
    bottom: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}
.hero-photo-img {
    width: 100%;
    height: 130%;
    object-fit: scale-down;
    object-position: top center;
    will-change: transform;
}

/* ═══════════════════════════════════════
   DARK SECTION — platforms, stats & tools
   ═══════════════════════════════════════ */
.dark-section {
    background: #12141c;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.dark-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241,98,50,0.10) 0%, transparent 60%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}
.dark-glow-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(241,98,50,0.06) 0%, transparent 60%);
    bottom: -150px;
    left: -100px;
    pointer-events: none;
}
.dark-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Logo rows */
.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s ease, opacity 0.3s ease;
}
.logo-item:hover {
    color: rgba(255,255,255,0.85);
}
.logo-item svg {
    height: 34px;
    width: auto;
    fill: currentColor;
}
.logo-item img {
    height: 34px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.35;
    transition: opacity 0.3s ease;
}
.logo-item:hover img {
    opacity: 0.85;
}
/* React uses stroke, not fill */
.logo-item.logo-stroke svg {
    fill: none;
    stroke: currentColor;
}

/* Tool logos — slightly smaller */
.tools-row {
    gap: 3rem;
}
.tools-row .logo-item svg {
    height: 28px;
}

/* Marquee — infinite scroll */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 0.5rem 0;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee var(--marquee-speed, 30s) linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
}
.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255,255,255,0.35);
    transition: opacity 0.3s ease;
}
.marquee-item:hover {
    color: rgba(255,255,255,0.85);
}
.marquee-item img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.35;
    transition: opacity 0.3s ease;
}
.marquee-item:hover img {
    opacity: 0.85;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Dark section stats */
.dark-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dark-stat {
    text-align: center;
}
.dark-stat-num {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: rgba(255,255,255,0.95);
    letter-spacing: -0.03em;
    line-height: 1;
}
.dark-stat-num .acc {
    color: rgba(255,255,255,0.95);
}
.dark-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
}

.dark-divider {
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0 auto 2.5rem;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.about p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.75;
}
.about strong { color: var(--text); font-weight: 600; }

.skills-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.skill-group h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}
.skill-group ul { list-style: none; }
.skill-group li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border-light);
}
.skill-group li:last-child { border-bottom: none; }
.skill-group li.hl { color: var(--accent); font-weight: 500; }

/* ═══════════════════════════════════════
   MURMLO
   ═══════════════════════════════════════ */
.murmlo { padding: 3rem 0 6rem; }
.murmlo-card {
    background: var(--bg-dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.murmlo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 440px;
}
.murmlo-text {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}
.murmlo-text .tag { color: var(--accent); }
.murmlo-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin: 0.6rem 0 0.4rem;
    letter-spacing: -0.02em;
}
.murmlo-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.2rem;
}
.murmlo-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.murmlo-stack {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.8rem;
}
.murmlo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}
.murmlo-tags span {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    color: rgba(255,255,255,0.45);
}
.murmlo-btns {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.murmlo-btns .btn-outline {
    border-color: rgba(255,255,255,0.15);
    color: white;
    background: transparent;
}
.murmlo-btns .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.murmlo-avail {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.murmlo-visual {
    background: linear-gradient(160deg, #222636, #2a2f40);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.murmlo-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reversed layout */
.murmlo--reversed .murmlo-inner {
    direction: rtl;
}
.murmlo--reversed .murmlo-inner > * {
    direction: ltr;
}

/* Murmlo Light variant */
.murmlo--light .murmlo-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
}
.murmlo--light .murmlo-text { color: var(--text); }
.murmlo--light .murmlo-text h2 { color: var(--text); }
.murmlo--light .murmlo-quote { color: var(--text-secondary); }
.murmlo--light .murmlo-desc { color: var(--text-secondary); }
.murmlo--light .murmlo-tags span {
    border-color: var(--border);
    color: var(--text-light);
}
.murmlo--light .murmlo-avail { color: var(--text-light); }
.murmlo--light .murmlo-visual {
    background: linear-gradient(160deg, #f0f1f3, #e8eaed);
}
.murmlo--light .murmlo-visual-logo { color: var(--text); }
.murmlo--light .murmlo-btns .btn-outline {
    border-color: var(--border);
    color: var(--text);
}
.murmlo--light .murmlo-btns .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ═══════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════ */
.portfolio { padding: 6rem 0; background: var(--bg-light); }
.port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}
a.port-card {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}
.port-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.port-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.port-thumb {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
}
.port-thumb.has-screenshot {
    font-size: 0;
}
.port-thumb.has-screenshot img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform: translateY(0);
}
.port-card:hover .port-thumb.has-screenshot img {
    transform: translateY(calc(-100% + 250px));
}
.port-eye {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
    pointer-events: none;
}
.port-card:hover .port-eye {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.port-card:active .port-eye {
    transform: translate(-50%, -50%) scale(0.95);
}
.pt-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.pt-2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.pt-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.pt-4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.pt-5 { background: linear-gradient(135deg, #fa709a, #fee140); }
.pt-6 { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.port-info { padding: 1rem 1.2rem; }
.port-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.2rem;
}
.port-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}
.port-sub {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 0.15rem;
}
.port-more {
    text-align: center;
    margin-top: 2.5rem;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials { padding: 6rem 0; }
.test-top-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.test-arrows {
    display: flex;
    gap: 0.5rem;
}
.test-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.test-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}
.test-arrow.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}
.test-swiper {
    overflow: visible;
    margin-left: calc(-50vw + 50%);
    width: 100vw;
    padding: 0 16px 16px;
}
.test-swiper .swiper-slide {
    padding: 16px 0 24px;
}
.testimonials {
    overflow-x: clip;
    overflow-y: visible;
}
a.test-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    cursor: pointer;
}
.test-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.test-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    border-color: white;
}
.test-mark {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    opacity: 0.3;
}
.test-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0.5rem 0 1.2rem;
    font-style: italic;
    flex: 1;
}
.test-author {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.test-stars {
    color: var(--accent);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}
.proof-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}
.proof-item { text-align: center; }
.proof-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 auto 0.5rem;
}
.proof-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services { padding: 6rem 0; background: var(--bg-light); }
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}
.svc-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: box-shadow 0.25s, transform 0.25s;
}
.svc-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.svc-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.svc-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}
.svc-card li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
}
.svc-card li::before {
    content: '\2192';
    color: var(--accent);
    font-weight: 500;
    margin-right: 0.5rem;
}
.svc-price {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.svc-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
}
.svc-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact-section {
    padding: 6rem 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text);
    margin: 0.4rem 0 1rem;
    letter-spacing: -0.02em;
}
.contact-info h2 span { color: var(--accent); }
.contact-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 2rem;
}
.contact-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.contact-links a:hover { color: var(--accent); }
.contact-links a::before {
    content: '\2192';
    color: var(--accent);
    margin-right: 0.5rem;
}

.contact-form {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font);
    font-size: 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.form-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}
.form-submit:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.form-submit:active { transform: translateY(0); }
.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}
.form-success.show { display: block; }
.form-success p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.3rem;
}
.form-success small {
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
    text-align: center;
}
.footer p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.6rem;
}
.footer-links a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}
.footer-links a:hover { color: var(--accent); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .murmlo-inner { grid-template-columns: 1fr; }
    .murmlo-visual { min-height: 240px; order: -1; }
    .murmlo--reversed .murmlo-inner { direction: ltr; }
    .port-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hero { min-height: auto; max-height: none; }
    .hero > .container { padding-top: 7rem; padding-bottom: 5rem; }
    .hero-content { text-align: center; max-width: 100%; }
    .hero-sub { margin: 0 auto 2.5rem; }
    .hero-form { max-width: 100%; flex-direction: column; }
    .hero-form button { padding: 0.85rem; }
    .hero-hint { text-align: center; }
    .hero-bg-photo { display: none; }
    .dark-glow, .dark-glow-2 { display: none; }
    .hero-lines .line:nth-child(1),
    .hero-lines .line:nth-child(5) { display: none; }
    .hero-lines .line:nth-child(2) { left: 15%; }
    .hero-lines .line:nth-child(3) { left: 50%; }
    .hero-lines .line:nth-child(4) { left: 85%; }
    .logos-row { gap: 2rem; }
    .tools-row { gap: 1.5rem; }
    .tools-row .logo-item svg { height: 22px; }
    .dark-stats { gap: 2rem; flex-wrap: wrap; justify-content: center; }
    .dark-stats .dark-stat { min-width: 140px; }
    .skills-cols { grid-template-columns: 1fr; gap: 1.2rem; }
    .port-grid { grid-template-columns: 1fr; }
    .test-top-row { flex-wrap: wrap; gap: 1rem; }
    .proof-row { flex-direction: column; align-items: center; gap: 1.2rem; }
    .murmlo-text { padding: 2rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
}