/* Thrower — Clinical pharmacy retail (trust + clarity) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f4f9fc;
    --bg-elevated: #ffffff;
    --bg-muted: #e8f2f8;
    --ink: #0f172a;
    --muted: #475569;
    --border: #cfe4f2;
    --primary: #0369a1;
    --primary-hover: #075985;
    --health: #059669;
    --health-soft: #d1fae5;
    --accent: #0ea5e9;
    --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.1);
    --radius: 12px;
    --radius-lg: 18px;
    --font: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-display: "Lexend", system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(1200px 500px at 50% -10%, rgba(14, 165, 233, 0.12), transparent 60%),
        radial-gradient(800px 400px at 100% 20%, rgba(5, 150, 105, 0.08), transparent 50%);
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.9rem 0;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    padding: 0.6rem 0;
    box-shadow: var(--shadow);
}

.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: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(145deg, var(--health), #047857);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.35);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.2rem;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--bg-muted);
}

.nav-link.active {
    color: #fff;
    background: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 88px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.memphis-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Soft “clinical” orbs + cross motif */
.shape {
    position: absolute;
    border: none;
}

.shape-circle {
    border-radius: 50%;
}

.shape-1 {
    width: 280px;
    height: 280px;
    top: 8%;
    left: -6%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2), transparent 68%);
    filter: blur(2px);
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: -4%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.18), transparent 65%);
}

.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 18%;
    left: 10%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow);
}

.shape-triangle {
    display: none;
}

.shape-4,
.shape-5 {
    display: none;
}

.shape-zigzag {
    width: 2px;
    height: 120px;
    top: 22%;
    right: 22%;
    background: linear-gradient(180deg, transparent, rgba(3, 105, 161, 0.25), transparent);
    left: auto;
}

.shape-squiggle {
    width: 2px;
    height: 100px;
    bottom: 28%;
    right: 28%;
    background: linear-gradient(180deg, transparent, rgba(5, 150, 105, 0.25), transparent);
    animation: none;
}

.polka-dots {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(3, 105, 161, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 105, 161, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.9;
}

.stripes {
    display: none;
}

.stripes-diag {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: var(--health-soft);
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 1.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6.5vw, 3.6rem);
    font-weight: 700;
    margin-bottom: 1.1rem;
    line-height: 1.08;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary);
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(0.98rem, 2vw, 1.12rem);
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-display);
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(3, 105, 161, 0.35);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(3, 105, 161, 0.4);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--primary);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    padding: 1rem 1.4rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2.2s infinite;
}

.arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Sections */
section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
}

/* Services */
.games-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    position: relative;
}

.games-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--health), var(--primary), var(--accent));
    opacity: 0.85;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: var(--shadow);
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.35);
}

.game-card.featured {
    border-color: rgba(5, 150, 105, 0.45);
    box-shadow: var(--shadow), 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
    position: relative;
}

.game-card:hover .game-placeholder {
    transform: scale(1.04);
}

.game-1 {
    background: linear-gradient(160deg, #e0f2fe, #f0f9ff);
}

.game-2 {
    background: linear-gradient(160deg, #ecfdf5, #f0fdf4);
}

.game-3 {
    background: linear-gradient(160deg, #eff6ff, #f8fafc);
}

.game-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 60%);
}

.game-icon {
    font-size: 3.25rem;
    position: relative;
    z-index: 1;
}

.game-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
}

.game-badge {
    padding: 0.28rem 0.65rem;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
}

.game-badge.new {
    background: var(--health-soft);
    color: #065f46;
    border-color: #a7f3d0;
}

.game-badge.popular {
    background: #e0f2fe;
    color: var(--primary);
    border-color: #bae6fd;
}

.game-badge.coming {
    background: #f1f5f9;
    color: var(--muted);
    border-color: #e2e8f0;
}

.game-content {
    padding: 1.35rem 1.4rem 1.5rem;
}

.game-platforms {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.platform {
    padding: 0.2rem 0.55rem;
    background: var(--bg-elevated);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.game-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--ink);
}

.game-genre {
    color: var(--health);
    font-size: 0.8rem;
    margin-bottom: 0.65rem;
    font-weight: 700;
}

.game-description {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.65;
    font-size: 0.9rem;
}

.game-features {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.25rem 0.55rem;
    background: var(--bg-elevated);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    border-radius: 999px;
    border: 1px solid var(--border);
}

.game-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s ease, color 0.2s ease;
}

.game-link:hover {
    color: var(--accent);
    gap: 0.55rem;
}

/* About */
.about-section {
    background: var(--bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-description {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.75;
    font-size: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.75rem;
}

.value-item {
    padding: 1.1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.value-item:nth-child(1) { border-left: 4px solid var(--primary); }
.value-item:nth-child(2) { border-left: 4px solid var(--accent); }
.value-item:nth-child(3) { border-left: 4px solid var(--health); }
.value-item:nth-child(4) { border-left: 4px solid #94a3b8; }

.value-icon {
    font-size: 1.65rem;
    margin-bottom: 0.45rem;
}

.value-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--ink);
}

.value-item p {
    color: var(--muted);
    font-size: 0.84rem;
}

.about-visual {
    position: relative;
    height: 360px;
}

.visual-card {
    position: absolute;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow);
}

.card-1 {
    width: 58%;
    height: 58%;
    top: 0;
    left: 0;
    background: linear-gradient(145deg, #e0f2fe, #fff);
    z-index: 3;
}

.card-2 {
    width: 58%;
    height: 58%;
    bottom: 0;
    right: 0;
    background: linear-gradient(145deg, #ecfdf5, #fff);
    z-index: 2;
}

.card-3 {
    width: 52%;
    height: 52%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #f8fafc, #fff);
    z-index: 1;
}

.about-visual:hover .card-1 {
    transform: translate(-6px, -6px);
}

.about-visual:hover .card-2 {
    transform: translate(6px, 6px);
}

.about-visual:hover .card-3 {
    transform: translate(-50%, -50%) scale(1.02);
}

/* Careers */
.careers-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.careers-intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 2.25rem;
    color: var(--muted);
    font-size: 1rem;
}

.open-positions h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: var(--ink);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.1rem;
}

.position-card {
    padding: 1.35rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.position-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.position-card h4 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
    color: var(--ink);
}

.position-location {
    color: var(--muted);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.position-type {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    background: var(--health-soft);
    font-size: 0.65rem;
    font-weight: 800;
    color: #065f46;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.position-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
}

.position-link:hover {
    text-decoration: underline;
}

/* Contact */
.contact-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.45rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--ink);
}

.info-text p {
    color: var(--muted);
    line-height: 1.65;
}

.info-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.info-text a:hover {
    text-decoration: underline;
    color: var(--accent);
}

.info-note {
    display: block;
    font-size: 0.76rem;
    margin-top: 0.25rem;
    font-weight: 600;
    color: var(--muted);
}

.social-links {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-top: 0.35rem;
}

.social-link {
    padding: 0.4rem 0.85rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 999px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.72rem;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--ink);
    font-family: var(--font);
    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(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0c4a6e 0%, #0f172a 100%);
    padding: 3.5rem 0 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .logo {
    color: #f8fafc;
}

.footer .logo-icon {
    background: linear-gradient(145deg, var(--accent), var(--primary));
    box-shadow: 0 2px 12px rgba(14, 165, 233, 0.35);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: #f1f5f9;
}

.footer-description {
    color: rgba(241, 245, 249, 0.78);
    margin-bottom: 0.85rem;
    line-height: 1.55;
    font-size: 0.82rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(241, 245, 249, 0.85);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #7dd3fc;
}

.footer-links li {
    margin-bottom: 0.35rem;
}

.newsletter-form input {
    padding: 0.75rem 0.9rem;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 10px;
    color: #f8fafc;
    font-family: var(--font);
    width: 100%;
    margin-bottom: 0.5rem;
}

.newsletter-form input::placeholder {
    color: rgba(248, 250, 252, 0.45);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.footer .btn-primary {
    width: 100%;
    text-align: center;
    background: var(--health);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.footer .btn-primary:hover {
    background: #047857;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.35rem;
    margin-top: 1.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    color: rgba(241, 245, 249, 0.65);
    font-size: 0.76rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
    .games-grid { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; gap: 2.25rem; }
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 58px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-elevated);
        width: 100%;
        padding: 1rem 1rem 1.25rem;
        gap: 0.25rem;
        transition: left 0.35s ease;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active { left: 0; }
    .nav-link { display: block; text-align: center; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .values-grid { grid-template-columns: 1fr; }
    .positions-grid { grid-template-columns: 1fr; }
    section { padding: 76px 0; }
    .about-visual { height: 280px; }
}

@media (max-width: 480px) {
    section { padding: 64px 0; }
    .hero { padding: 108px 16px 76px; }
    .contact-form { padding: 1.2rem; }
}
