/* ========================================
   Pink Seagull — Apple-Style Landing Page
   ======================================== */

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

:root {
  --black: #1d1d1f;
  --near-black: #111111;
  --dark-gray: #1c1c1e;
  --gray: #86868b;
  --light-gray: #d2d2d7;
  --lighter-gray: #f5f5f7;
  --white: #fbfbfd;
  --pure-white: #ffffff;
  --blue-link: #2997ff;
  --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: var(--black);
  background: var(--lighter-gray);
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* ========================================
   Navigation (Apple-style)
   ======================================== */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}

.nav-logo img {
  height: 20px;
  width: auto;
  filter: none;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.nav-logo:hover img { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0,0,0,0.65);
  letter-spacing: 0;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--black); }

.nav-lang {
  font-size: 10px !important;
  font-weight: 500 !important;
  padding: 2px 10px;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.2);
}
.nav-lang:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: rgba(0,0,0,0.65);
}
.menu-toggle svg { width: 18px; height: 18px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 40px 32px;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(0,0,0,0.65);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav a:hover { color: var(--black); }
.mobile-nav .nav-lang {
  display: inline-block;
  width: fit-content;
  margin-top: 12px;
  border-bottom: none;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.open { display: flex; }
}

/* ========================================
   Apple-style text links
   ======================================== */
.link-more {
  font-size: 21px;
  color: var(--blue-link);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: all var(--transition);
}
.link-more:hover { text-decoration: underline; text-underline-offset: 3px; }
.link-more .arrow {
  font-size: 1.1em;
  transition: transform var(--transition);
}
.link-more:hover .arrow { transform: translateX(4px); }

.link-group {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .link-more { font-size: 17px; }
}

/* ========================================
   Hero Section (Full-width, black)
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--pure-white);
  overflow: hidden;
}

.hero-overline {
  font-size: 32px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--black);
  margin-bottom: 16px;
  max-width: 900px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #f472b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto 28px;
}

.hero-image {
  margin-top: 60px;
  width: 100%;
  max-width: 820px;
}
.hero-image img {
  width: 100%;
  border-radius: 14px;
}

/* ========================================
   Tile Sections (Apple product-card style)
   ======================================== */
.tile {
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}

.tile-full {
  padding: 100px 24px 80px;
}

.tile-black { background: var(--pure-white); color: var(--black); }
.tile-dark  { background: var(--lighter-gray); color: var(--black); }
.tile-gray  { background: var(--lighter-gray); color: var(--black); }
.tile-white { background: var(--pure-white); color: var(--black); }
.tile-accent-dark { background: #000000; color: var(--pure-white); }

.tile-inner {
  max-width: 1024px;
  margin: 0 auto;
}

/* Tile grid (Apple 2-column product grid) */
.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 12px;
}

.tile-grid .tile {
  border-radius: 24px;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 56px 32px 0;
}

.tile-grid .tile-content {
  margin-bottom: 40px;
}

.tile-grid .tile-image {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.tile-grid .tile-image img {
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.tile-grid .tile-image .service-icon-large {
  width: 200px;
  height: 200px;
  color: var(--blue-link);
  opacity: 0.15;
}

@media (max-width: 768px) {
  .tile-grid {
    grid-template-columns: 1fr;
  }
  .tile-grid .tile {
    min-height: 480px;
  }
}

/* Tile typography */
.tile-label {
  font-size: 17px;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 0;
}

.tile-dark .tile-label,
.tile-black .tile-label {
  color: var(--gray);
}

.tile h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.07;
  margin-bottom: 12px;
}

.tile h3 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.07;
  margin-bottom: 12px;
}

.tile h3 em,
.tile h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #f472b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Override gradient text for light sections */
.tile-gray h3 em,
.tile-gray h2 em,
.tile-white h3 em,
.tile-white h2 em,
.tile-black h3 em,
.tile-black h2 em,
.tile-dark h3 em,
.tile-dark h2 em {
  -webkit-text-fill-color: #db2777;
}

.tile-accent-dark h3 em,
.tile-accent-dark h2 em {
  -webkit-text-fill-color: transparent;
}

.tile-accent-dark .split-text p {
  color: rgba(255,255,255,0.7);
}

.tile-sub {
  font-size: clamp(14px, 1.8vw, 19px);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.42;
}

/* ========================================
   Device Showcase (phone/tablet mockups)
   ======================================== */
.device-showcase {
  display: flex;
  gap: 40px;
  max-width: 1024px;
  margin: 60px auto 0;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
}

.device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.device-card:hover { transform: translateY(-6px); }

/* Phone frame */
.device-phone {
  width: 220px;
  background: #e8e8ed;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #d1d1d6,
    0 20px 60px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.6);
  position: relative;
}
.device-phone::before {
  content: "";
  display: block;
  width: 80px; height: 5px;
  background: #d1d1d6;
  border-radius: 10px;
  margin: 4px auto 8px;
}
.device-phone .device-screen {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  background: #000;
}
.device-phone .device-home {
  width: 40px; height: 5px;
  background: #d1d1d6;
  border-radius: 10px;
  margin: 8px auto 4px;
}

/* Tablet frame */
.device-tablet {
  width: 320px;
  background: #e8e8ed;
  border-radius: 24px;
  padding: 14px;
  box-shadow:
    0 0 0 2px #d1d1d6,
    0 20px 60px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.6);
}
.device-tablet::before {
  content: "";
  display: block;
  width: 8px; height: 8px;
  background: #d1d1d6;
  border-radius: 50%;
  margin: 2px auto 8px;
}
.device-tablet .device-screen {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #000;
}
.device-tablet .device-home {
  width: 36px; height: 5px;
  background: #d1d1d6;
  border-radius: 10px;
  margin: 8px auto 2px;
}

/* Device card label */
.device-card-label { text-align: center; }
.device-card-label h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.device-card-label p {
  font-size: 0.8rem;
  color: var(--gray);
}

@media (max-width: 900px) {
  .device-showcase { gap: 30px; }
  .device-phone { width: 180px; border-radius: 28px; padding: 10px; }
  .device-tablet { width: 260px; }
}
@media (max-width: 650px) {
  .device-showcase { flex-direction: column; align-items: center; }
  .device-phone { width: 200px; }
  .device-tablet { width: 280px; }
}

/* ========================================
   App UI inside device screens
   ======================================== */
.app-ui {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  color: #1d1d1f;
  overflow: hidden;
}

.app-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px 4px;
  font-size: 8px;
  font-weight: 600;
  flex-shrink: 0;
}
.app-status-icons {
  display: flex;
  gap: 3px;
  align-items: center;
}
.app-status-icons span {
  display: block;
  width: 12px; height: 7px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.6;
}

.app-header {
  padding: 8px 14px 10px;
  flex-shrink: 0;
}
.app-header h5 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.app-header p {
  font-size: 8px;
  opacity: 0.5;
}

.app-search {
  margin: 4px 14px 10px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(128,128,128,0.12);
  font-size: 8px;
  color: rgba(128,128,128,0.7);
  flex-shrink: 0;
}

.app-list {
  flex: 1;
  overflow: hidden;
  padding: 0 14px;
}
.app-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(128,128,128,0.12);
}
.app-list-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}
.app-list-avatar.square { border-radius: 6px; }
.app-list-text { flex: 1; min-width: 0; }
.app-list-text strong {
  display: block;
  font-size: 9px;
  font-weight: 600;
  margin-bottom: 1px;
}
.app-list-text span {
  font-size: 7.5px;
  opacity: 0.5;
}
.app-list-action {
  font-size: 7px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.app-cards {
  display: flex;
  gap: 8px;
  padding: 0 14px;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.app-card-mini {
  flex: 1;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}
.app-card-mini .num {
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.app-card-mini .label {
  font-size: 6.5px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.app-tabs {
  display: flex;
  justify-content: space-around;
  padding: 6px 10px 8px;
  border-top: 1px solid rgba(128,128,128,0.12);
  flex-shrink: 0;
}
.app-tab {
  text-align: center;
  font-size: 6px;
  opacity: 0.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.app-tab.active { opacity: 1; }
.app-tab-icon { width: 14px; height: 14px; }

.app-section-title {
  font-size: 11px;
  font-weight: 700;
  padding: 10px 14px 6px;
  flex-shrink: 0;
}

.app-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 0 14px;
  flex-shrink: 0;
}
.app-slot {
  padding: 6px 4px;
  border-radius: 8px;
  text-align: center;
  font-size: 8px;
  font-weight: 500;
}

.app-btn {
  margin: 10px 14px;
  padding: 9px;
  border-radius: 10px;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

/* Tablet app overrides */
.device-tablet .app-header h5 { font-size: 18px; }
.device-tablet .app-list-avatar { width: 40px; height: 40px; }
.device-tablet .app-list-text strong { font-size: 11px; }
.device-tablet .app-list-text span { font-size: 9px; }
.device-tablet .app-list-action { font-size: 8px; padding: 5px 12px; }
.device-tablet .app-cards .num { font-size: 18px; }
.device-tablet .app-cards .label { font-size: 7.5px; }
.device-tablet .app-section-title { font-size: 13px; }

/* ========================================
   Split Section (image + text, like Apple About)
   ======================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1024px;
  margin: 0 auto;
  align-items: center;
  text-align: left;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-image {
  border-radius: 20px;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.split-text h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.07;
  margin-bottom: 20px;
}
.split-text h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #f472b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.split-text p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.58;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-reverse { direction: ltr; }
  .split-image img { min-height: 260px; }
}

/* ========================================
   Process Section (numbered steps)
   ======================================== */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1024px;
  margin: 60px auto 0;
}

.process-item {
  border-radius: 20px;
  padding: 40px 28px;
  text-align: left;
  transition: transform var(--transition);
}
.tile-dark .process-item,
.tile-black .process-item { background: var(--lighter-gray); }
.tile-gray .process-item  { background: var(--pure-white); }

.process-item:hover { transform: scale(1.02); }

.process-num {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #f472b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.process-item h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.47;
}

@media (max-width: 768px) {
  .process-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-row { grid-template-columns: 1fr; }
}

/* ========================================
   Services Tile Icons
   ======================================== */
.svc-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}
.svc-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1;
}
.tile-dark .svc-icon,
.tile-black .svc-icon { color: var(--black); }
.tile-gray .svc-icon  { color: var(--black); }
.tile-white .svc-icon { color: var(--black); }

/* ========================================
   Contact Section
   ======================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  max-width: 1024px;
  margin: 60px auto 0;
  text-align: left;
}

.contact-form {
  border-radius: 20px;
  padding: 48px 40px;
}
.tile-dark .contact-form,
.tile-black .contact-form { background: var(--pure-white); }
.tile-gray .contact-form  { background: var(--pure-white); }

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 17px;
  font-family: inherit;
  outline: none;
  transition: all var(--transition);
}

.tile-dark .form-group input,
.tile-dark .form-group textarea,
.tile-black .form-group input,
.tile-black .form-group textarea {
  border: 1px solid var(--light-gray);
  background: var(--lighter-gray);
  color: var(--black);
}
.tile-gray .form-group input,
.tile-gray .form-group textarea {
  border: 1px solid var(--light-gray);
  background: var(--lighter-gray);
  color: var(--black);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); opacity: 0.5; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-link);
  box-shadow: 0 0 0 4px rgba(41,151,255,0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 17px 32px;
  background: var(--blue-link);
  color: var(--pure-white);
  font-weight: 400;
  font-size: 17px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  letter-spacing: 0;
}
.btn-submit:hover { background: #0077ed; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 8px;
}
.contact-info-item h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.tile-dark .contact-info-item h4,
.tile-black .contact-info-item h4 { color: var(--black); }

.contact-info-item a,
.contact-info-item p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.47;
  transition: color var(--transition);
}
.contact-info-item a:hover { color: var(--blue-link); }

@media (max-width: 768px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}

/* ========================================
   Banner (full-width image section)
   ======================================== */
.banner {
  max-width: 1024px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0,0,0,0.4);
  padding: 40px;
}
.banner-overlay h3 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--pure-white);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.07;
}
.banner-overlay p {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
}

@media (max-width: 768px) {
  .banner img { height: 280px; }
}

/* ========================================
   Footer (Apple-style)
   ======================================== */
.footer {
  background: var(--lighter-gray);
  color: var(--gray);
  font-size: 12px;
  line-height: 1.33;
}

.footer-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 18px 22px 14px;
}

.footer-note {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.42;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light-gray);
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.footer-col a {
  display: block;
  padding: 2px 0;
  font-size: 12px;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--black); }

.footer-col .footer-logo img {
  height: 17px;
  filter: none;
  opacity: 0.35;
  margin-bottom: 6px;
}
.footer-col .footer-logo:hover img { opacity: 0.6; }
.footer-col > p {
  font-size: 12px;
  color: var(--gray);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  font-size: 12px;
}
.footer-bottom span { color: var(--gray); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal a {
  color: var(--gray);
  font-size: 12px;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--black); }

@media (max-width: 768px) {
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* ========================================
   Scroll-reveal animation
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Utility: responsive mobile padding
   ======================================== */
@media (max-width: 768px) {
  .tile { padding: 64px 20px; }
  .tile-full { padding: 80px 20px 64px; }
  .hero { padding: 110px 20px 60px; }
}
