/* Pintler Pharmacy — Community drugstore / clinical care */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
    --font-body: "DM Sans", system-ui, sans-serif;

    /* Clinical greens + clean neutrals */
    --mint: #ecfdf5;
    --mint-deep: #d1fae5;
    --white: #ffffff;
    --ink: #0f172a;
    --ink-muted: #334155;
    --muted: #64748b;
    --line: #cbd5e1;
    --line-soft: #e2e8f0;

    --rx: #047857;
    --rx-hover: #065f46;
    --rx-soft: rgba(4, 120, 87, 0.1);
    --teal: #0d9488;
    --sky: #0284c7;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 9999px;

    --shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);

    --pop-green: #059669;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, var(--mint) 0%, #f0fdf4 35%, var(--white) 100%);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Nav — clean clinic bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.9rem 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--rx);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--teal);
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
}

.nav-link {
    color: var(--ink-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.35rem 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rx);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.nav-link:hover {
    color: var(--rx);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--rx);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 118px 22px 84px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* Subtle “plus” cross pattern — pharmacy cue */
.grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(90deg, rgba(4, 120, 87, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(4, 120, 87, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}

.grid-pattern::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(13, 148, 136, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 50% at 100% 60%, rgba(2, 132, 199, 0.1), transparent 50%);
    pointer-events: none;
}

.glow-effect {
    position: absolute;
    width: min(85vw, 520px);
    height: min(85vw, 520px);
    bottom: -15%;
    left: -10%;
    background: radial-gradient(circle, rgba(4, 120, 87, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 1.1rem;
    background: var(--white);
    border: 1px solid var(--mint-deep);
    border-radius: var(--radius-pill);
    color: var(--rx);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
    box-shadow: var(--shadow);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 6.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.title-word {
    display: block;
    margin-bottom: 0.05rem;
}

.title-word.highlight {
    color: var(--rx);
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(0.98rem, 2vw, 1.12rem);
    color: var(--ink-muted);
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn {
    padding: 0.88rem 1.75rem;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--rx);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(4, 120, 87, 0.28);
}

.btn-primary:hover {
    background: var(--rx-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--rx);
    border: 2px solid var(--rx);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--rx-soft);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--rx);
    border: 2px solid var(--rx);
}

.btn-outline:hover {
    background: var(--rx-soft);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin-top: 2.25rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-soft);
}

.stat-box {
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 700;
    color: var(--rx);
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mouse {
    width: 22px;
    height: 34px;
    border: 2px solid var(--line);
    border-radius: 11px;
    position: relative;
}

.mouse::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--rx);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(9px);
    }
}

section {
    padding: 92px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.section-label {
    display: inline-block;
    padding: 0.32rem 0.95rem;
    background: var(--rx-soft);
    border: 1px solid rgba(4, 120, 87, 0.2);
    border-radius: var(--radius-pill);
    color: var(--rx);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--ink-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.games-section {
    background: var(--white);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.games-showcase {
    margin-bottom: 3.25rem;
}

.featured-game {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    align-items: stretch;
    background: linear-gradient(135deg, #f0fdf4 0%, var(--white) 55%);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.game-media {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.game-1 {
    background: linear-gradient(160deg, #047857 0%, #0d9488 45%, #0f766e 100%);
}

.game-2 {
    background: linear-gradient(160deg, #d1fae5, #a7f3d0);
}

.game-3 {
    background: linear-gradient(160deg, #e0f2fe, #bae6fd);
}

.game-4 {
    background: linear-gradient(160deg, #fef9c3, #fde68a);
}

.game-5 {
    background: linear-gradient(160deg, #e2e8f0, #cbd5e1);
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-media:hover .game-overlay {
    opacity: 1;
}

.game-media:hover .game-image {
    transform: scale(1.03);
}

.game-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 0.32rem 0.8rem;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--rx);
    text-transform: uppercase;
}

.game-badge.featured {
    background: var(--rx);
    color: var(--white);
    border-color: var(--rx);
}

.play-button {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rx);
    border: 1px solid var(--line-soft);
}

.game-info {
    padding: 2rem 1.75rem;
}

.game-meta {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
    font-size: 0.75rem;
    color: var(--muted);
}

.game-platform,
.game-year {
    padding: 0.22rem 0.6rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-platform {
    background: var(--rx-soft);
    color: var(--rx);
}

.game-year {
    background: rgba(2, 132, 199, 0.1);
    color: var(--sky);
}

.game-title {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.5vw, 1.95rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.game-genre {
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.68rem;
}

.game-description {
    color: var(--ink-muted);
    margin-bottom: 1.2rem;
    line-height: 1.75;
    font-size: 0.96rem;
}

.game-features {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.32rem 0.72rem;
    border-radius: var(--radius-pill);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--ink-muted);
    background: var(--white);
    border: 1px solid var(--line-soft);
}

.game-actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
    gap: 1rem;
}

.game-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.game-card .game-image {
    height: 160px;
}

.game-content {
    padding: 1.2rem 1.25rem 1.4rem;
}

.game-card .game-title {
    font-size: 1.12rem;
}

.game-card .game-description {
    font-size: 0.88rem;
}

.game-link {
    color: var(--rx);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.84rem;
}

.game-link:hover {
    color: var(--sky);
}

.studio-section {
    background: transparent;
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.studio-description {
    color: var(--ink-muted);
    margin-bottom: 0.95rem;
    line-height: 1.78;
    font-size: 0.98rem;
}

.studio-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.2rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: border-color 0.2s ease;
}

.value-item:hover {
    border-color: rgba(4, 120, 87, 0.35);
}

.value-icon {
    font-size: 1.85rem;
    margin-bottom: 0.45rem;
}

.value-item h4 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.2rem;
}

.value-item p {
    color: var(--muted);
    font-size: 0.8rem;
}

.studio-visual {
    position: relative;
}

.studio-image {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-md);
    background: linear-gradient(165deg, #ecfdf5, #86efac 40%, #047857);
}

.floating-card {
    position: absolute;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: var(--shadow-md);
    animation: float 4.5s ease-in-out infinite;
}

.floating-card .card-text {
    color: var(--ink);
    font-weight: 600;
    font-size: 0.82rem;
}

.card-1 {
    top: 10px;
    right: -6px;
}

.card-2 {
    bottom: 64px;
    left: -10px;
    animation-delay: 1s;
}

.card-3 {
    top: 40%;
    right: -12px;
    animation-delay: 2s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.card-icon {
    font-size: 1.25rem;
}

.card-text {
    font-weight: 600;
}

.team-section {
    background: linear-gradient(180deg, rgba(236, 253, 245, 0.6), transparent);
    border-top: 1px solid var(--line-soft);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(246px, 1fr));
    gap: 1rem;
}

.team-member {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.member-photo {
    margin-bottom: 0.9rem;
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint-deep), #a7f3d0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--rx);
    border: 2px solid var(--line-soft);
}

.member-name {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.2rem;
}

.member-role {
    color: var(--rx);
    font-weight: 700;
    margin-bottom: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.65rem;
}

.member-bio {
    color: var(--ink-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

.member-social {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
}

.member-social a {
    min-width: 34px;
    height: 34px;
    padding: 0 0.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint);
    border-radius: var(--radius-pill);
    color: var(--rx);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid var(--line-soft);
    transition: all 0.2s ease;
}

.member-social a:hover {
    background: var(--rx);
    color: var(--white);
    border-color: var(--rx);
}

.careers-section {
    background: var(--white);
    border-top: 1px solid var(--line-soft);
}

.careers-content {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 2.75rem;
    align-items: center;
}

.careers-description {
    color: var(--ink-muted);
    margin-bottom: 0.85rem;
    line-height: 1.75;
    font-size: 0.98rem;
}

.open-positions {
    margin: 1.75rem 0;
}

.open-positions h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--ink);
}

.position-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
}

.position-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.95rem 1.1rem;
    background: var(--mint);
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    gap: 0.75rem;
}

.position-info h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: var(--ink);
}

.position-location {
    color: var(--muted);
    font-size: 0.78rem;
}

.careers-image {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-md);
    background: linear-gradient(165deg, #f0fdf4, #bbf7d0 40%, #047857);
}

.news-section {
    background: var(--mint);
    border-top: 1px solid var(--line-soft);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
    gap: 1rem;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.news-card.featured-news {
    grid-column: span 2;
}

.news-image {
    height: 170px;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}

.news-1 {
    background: linear-gradient(135deg, #047857, #0f766e);
}

.news-2 {
    background: linear-gradient(135deg, #bae6fd, #38bdf8);
}

.news-3 {
    background: linear-gradient(135deg, #fef08a, #facc15);
}

.news-card:hover .news-image {
    transform: scale(1.02);
}

.news-content {
    padding: 1.2rem 1.25rem;
}

.news-date {
    color: var(--muted);
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
    display: block;
}

.news-title {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.news-excerpt {
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.news-link {
    color: var(--rx);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
}

.news-link:hover {
    color: var(--sky);
}

.contact-section {
    background: var(--white);
    border-top: 1px solid var(--line-soft);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 2.25rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.info-card,
.social-media {
    padding: 1.2rem;
    background: var(--mint);
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
}

.info-icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.info-card h4,
.social-media h4 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--ink);
}

.info-card p {
    color: var(--ink-muted);
    line-height: 1.65;
    font-size: 0.9rem;
}

.info-card p a {
    color: var(--rx);
    text-decoration: none;
    font-weight: 700;
}

.info-card p a:hover {
    color: var(--sky);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.social-link {
    padding: 0.38rem 0.8rem;
    background: var(--white);
    border-radius: var(--radius-pill);
    color: var(--ink-muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid var(--line-soft);
    transition: all 0.2s ease;
}

.social-link:hover {
    border-color: var(--rx);
    color: var(--rx);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.35rem;
    background: var(--mint);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.form-group input,
.form-group textarea {
    padding: 0.78rem 0.95rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rx);
    box-shadow: 0 0 0 3px var(--rx-soft);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background: linear-gradient(180deg, #064e3b 0%, #022c22 100%);
    padding: 2.75rem 0 1.35rem;
    color: #ecfdf5;
    border-top: 4px solid var(--teal);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.25rem;
    margin-bottom: 1.75rem;
    align-items: start;
}

.footer-brand {
    max-width: 360px;
}

.footer-brand .logo {
    color: #ecfdf5;
}

.footer-brand .logo-text {
    color: #ecfdf5;
}

.footer-brand .logo-icon {
    color: #5eead4;
}

.footer-tagline {
    color: #a7f3d0;
    margin: 0.75rem 0 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.45rem;
}

.social-icon {
    min-width: 38px;
    height: 38px;
    padding: 0 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    color: #ecfdf5;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.2s ease;
}

.social-icon:hover {
    background: rgba(94, 234, 212, 0.2);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 2rem;
    max-width: 620px;
}

.footer-column h4 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    color: #6ee7b7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.38rem;
}

.footer-column ul li a {
    color: #d1fae5;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #86efac;
    font-size: 0.78rem;
}

.footer-meta {
    color: #86efac;
}

@media (max-width: 1024px) {
    .featured-game {
        grid-template-columns: 1fr;
    }

    .game-media {
        min-height: 260px;
    }

    .studio-content,
    .careers-content {
        grid-template-columns: 1fr;
    }

    .news-card.featured-news {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 1rem 0 1.5rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--line-soft);
        gap: 0;
    }

    .nav-menu li {
        padding: 0.55rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .studio-values {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.55rem;
        text-align: center;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    section {
        padding: 72px 0;
    }

    .hero {
        padding: 100px 18px 72px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .game-actions {
        flex-direction: column;
    }

    .position-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
