/* =========================================================
   Green Frog Studio - grfrog.com
   Dark theme with green accent
   ========================================================= */

:root {
    --bg: #07100a;
    --bg-2: #0c1711;
    --bg-3: #11201a;
    --panel: #0f1a14;
    --panel-hover: #152821;
    --border: rgba(74, 222, 128, 0.12);
    --border-hover: rgba(74, 222, 128, 0.35);

    --text: #e6f4ec;
    --text-dim: #94a89c;
    --text-mute: #62766a;

    --green: #4ade80;
    --green-2: #22c55e;
    --green-deep: #16a34a;
    --green-glow: rgba(74, 222, 128, 0.22);

    --radius: 14px;
    --radius-lg: 22px;
    --container: 1200px;

    --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .2s ease;
    letter-spacing: 0.01em;
    text-align: center;
    white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; padding: 16px 24px; }

.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: #04120a;
    box-shadow: 0 8px 32px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 42px rgba(74, 222, 128, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--border-hover);
    background: var(--panel);
    transform: translateY(-2px);
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(7, 16, 10, 0.65);
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
}
.nav.scrolled {
    background: rgba(7, 16, 10, 0.92);
    border-bottom-color: var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 32px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
}
.logo-icon { font-size: 26px; filter: drop-shadow(0 0 12px var(--green-glow)); }
.logo-accent { color: var(--green); }

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
    margin-right: 20px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color .2s;
    position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--green);
    transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .2s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-glow {
    position: absolute;
    top: -10%; left: 50%;
    transform: translateX(-50%);
    width: 1100px; height: 1100px;
    background: radial-gradient(circle at center,
        rgba(74, 222, 128, 0.18) 0%,
        rgba(34, 197, 94, 0.08) 25%,
        transparent 60%);
    filter: blur(20px);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74, 222, 128, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 222, 128, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 32px;
}
.dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--green);
    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(40px, 7vw, 84px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--green) 0%, #a7f3d0 50%, var(--green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-sub {
    font-size: clamp(16px, 1.5vw, 19px);
    color: var(--text-dim);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 780px;
    margin: 0 auto 56px;
}
.stat {
    text-align: center;
}
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 24px var(--green-glow);
}
.stat-label {
    font-size: 13px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.platforms-label {
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}
.platform-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.platform {
    padding: 8px 16px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
    transition: all .2s;
}
.platform:hover {
    border-color: var(--border-hover);
    color: var(--green);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
    position: relative;
}
.section-alt {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}
.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}
.section-sub {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ===== GAMES GRID ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.game-card {
    position: relative;
    padding: 24px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}
.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-hover);
}
.game-img {
    height: 220px;
    border-radius: var(--radius);
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    margin: -8px -8px 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.game-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(7, 16, 10, 0.8) 100%);
}
.game-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(74, 222, 128, 0.15) 100%);
    opacity: 0;
    transition: opacity .3s;
}
.game-card:hover .game-img::after { opacity: 1; }

.game-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.tag {
    padding: 4px 10px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid var(--border);
    color: var(--green);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.game-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.game-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.55;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    padding: 32px 28px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    transform: translateX(-100%);
    transition: transform .5s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    background: var(--panel-hover);
}
.service-card:hover::before { transform: translateX(100%); }

.service-icon {
    font-size: 32px;
    margin-bottom: 18px;
    display: inline-flex;
    width: 56px; height: 56px;
    align-items: center;
    justify-content: center;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.service-card p {
    font-size: 14.5px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ===== PROCESS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 36px; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
    z-index: 0;
}
.process-step {
    position: relative;
    padding: 32px 24px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all .3s ease;
    z-index: 1;
}
.process-step:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}
.step-num {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #04120a;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px var(--green-glow);
}
.process-step h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.55;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-text .section-title {
    text-align: left;
}
.about-text .eyebrow {
    margin-left: 0;
}
.about-lead {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.55;
    font-weight: 500;
}
.about-text p {
    color: var(--text-dim);
    margin-bottom: 16px;
    font-size: 16px;
}
.about-meta {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.meta-label {
    font-size: 12px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
    font-weight: 600;
}
.meta-val {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.about-visual {
    display: flex;
    justify-content: center;
}
.about-card {
    background: linear-gradient(145deg, var(--panel) 0%, var(--bg-3) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    width: 100%;
    max-width: 380px;
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 40%);
    opacity: 0.3;
}
.big-frog {
    font-size: 120px;
    margin-bottom: 16px;
    filter: drop-shadow(0 20px 40px rgba(74, 222, 128, 0.3));
    animation: float 4s ease-in-out infinite;
    position: relative;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.about-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}
.about-card-sub {
    font-size: 14px;
    color: var(--text-dim);
    position: relative;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}
.contact-info {
    padding: 32px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.contact-block {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.contact-block:last-of-type {
    border-bottom: none;
}
.contact-label {
    font-size: 12px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    font-weight: 600;
}
.contact-val {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    transition: color .2s;
}
.contact-val:hover { color: var(--green); }
.contact-addr {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--text-dim);
}
.contact-addr:hover { color: var(--text-dim); }

.contact-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}
.check-badge {
    padding: 10px 14px;
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
}

.contact-form {
    padding: 32px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-form label span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    transition: all .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--green);
    background: var(--bg-2);
    box-shadow: 0 0 0 3px var(--green-glow);
}
.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-body);
}
.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}
.form-note {
    font-size: 14px;
    color: var(--green);
    text-align: center;
    min-height: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 72px 0 24px;
    margin-top: 40px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-tag {
    font-size: 14px;
    color: var(--text-dim);
    max-width: 340px;
    line-height: 1.6;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-heading {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.footer-col a {
    font-size: 14px;
    color: var(--text-dim);
    transition: color .2s;
}
.footer-col a:hover { color: var(--green); }
.footer-addr {
    font-size: 13px;
    color: var(--text-mute);
    line-height: 1.6;
    margin-top: 8px;
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-mute);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-motto { color: var(--text-dim); }

/* ===== LEGAL PAGES ===== */
.legal-hero {
    padding: 160px 0 60px;
    position: relative;
    overflow: hidden;
}
.legal-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.legal-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    line-height: 1.1;
}
.legal-hero .legal-date {
    color: var(--text-mute);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.legal {
    padding: 40px 0 100px;
}
.legal-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 40px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.legal-wrap h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 16px;
    color: var(--text);
    letter-spacing: -0.01em;
}
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--text);
}
.legal-wrap p,
.legal-wrap li {
    color: var(--text-dim);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 14px;
}
.legal-wrap ul, .legal-wrap ol {
    padding-left: 22px;
    margin-bottom: 14px;
}
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap strong { color: var(--text); font-weight: 600; }
.legal-wrap a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-wrap a:hover { color: #a7f3d0; }

.legal-toc {
    padding: 20px 24px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 32px;
}
.legal-toc-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 12px;
}
.legal-toc ol {
    margin: 0;
    padding-left: 22px;
    columns: 2;
    column-gap: 24px;
}
.legal-toc ol li {
    font-size: 14px;
    margin-bottom: 6px;
    break-inside: avoid;
}
.legal-toc a { text-decoration: none; color: var(--text-dim); }
.legal-toc a:hover { color: var(--green); }

.legal-disclaimer {
    margin-top: 40px;
    padding: 18px 20px;
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 13.5px;
    color: var(--text-mute);
    line-height: 1.6;
}

@media (max-width: 720px) {
    .legal-wrap { padding: 32px 24px; }
    .legal-toc ol { columns: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav.open .nav-links {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--bg-2);
        border-bottom: 1px solid var(--border);
        padding: 20px 24px;
        gap: 18px;
        margin: 0;
    }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .section { padding: 80px 0; }
    .hero { padding: 130px 0 80px; min-height: auto; }
}

@media (max-width: 560px) {
    .games-grid, .services-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-meta { flex-direction: column; gap: 20px; }
    .hero-ctas .btn { flex: 1; min-width: 140px; }
    .logo-text { font-size: 16px; }
    .container { padding: 0 18px; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--green);
    color: #04120a;
}
