/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0D1216;
  --dark: #161616;
  --darker: #0a0a0a;
  --pink: #E8548A;
  --pink-bright: #FF4D8D;
  --gold: #FFBD59;
  --blue: #38B6FF;
  --white: #FFFFFF;
  --gray: #888;
  --card-bg: #0f0f0f;
  --nav-bg: #fff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === UTILITY === */
.text-gold { color: var(--gold) !important; }
.text-blue { color: var(--blue) !important; }
.text-pink { color: var(--pink) !important; }
.script-font { font-family: 'Georgia', cursive; font-style: italic; }

/* === HEXAGONAL BACKGROUND === */
.hex-bg {
  position: relative;
  background-color: var(--dark);
  overflow: hidden;
}
.hex-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%),
    linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%),
    linear-gradient(60deg, rgba(255,255,255,0.05) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.05) 75%),
    linear-gradient(60deg, rgba(255,255,255,0.05) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.05) 75%);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  pointer-events: none;
  z-index: 0;
}
.hex-bg > * { position: relative; z-index: 1; }

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  padding: 8px 24px;
  background: var(--nav-bg);
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 16px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-small { font-size: 14px; font-weight: 700; color: #111; }
.logo-sub { font-size: 9px; color: #555; letter-spacing: 1px; }
.logo-main { font-size: 22px; font-weight: 900; color: #111; letter-spacing: 1px; }

/* Talent Park Badge in Nav */
.tp-nav-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF1493, #FF69B4);
  color: #FFF;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(255, 20, 147, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .tp-nav-badge { padding: 4px 8px; }
  .tp-badge-sub { display: none; } /* Hide subtext on smaller tablets */
}
@media (max-width: 768px) {
  .tp-nav-badge { display: none; } /* Hide completely on mobile */
}
.tp-nav-badge:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 15px rgba(255, 20, 147, 0.4);
  background: linear-gradient(135deg, #FF69B4, #FF1493);
}
.tp-badge-icon { font-size: 14px; }
.tp-badge-text { display: flex; flex-direction: column; line-height: 1; }
.tp-badge-main { font-size: 12px; font-weight: 900; letter-spacing: 0.5px; }
.tp-badge-sub { font-size: 7px; font-weight: 500; opacity: 0.9; margin-top: 2px; }

.nav-center { flex: 1; text-align: center; }
.nav-tagline {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: var(--pink);
  letter-spacing: 1px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-joinus {
  background: var(--pink);
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s;
}
.btn-joinus:hover { background: var(--pink-bright); transform: scale(1.05); }

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s;
}
.social-icon:hover { transform: scale(1.15); }
.social-icon.wa { background: #25D366; }
.social-icon.ig { background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.tt { background: #000; }
.social-icon.x-tw { background: #000; }

.flag { font-size: 22px; cursor: pointer; text-decoration: none; }

/* === HERO === */
.hero-exact {
  display: flex;
  width: 100%;
  align-items: stretch;
  background: #000;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-col {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Left Column - 38% */
.hero-left {
  width: 38%;
  flex: 0 0 38%;
  overflow: hidden;
}
.hero-bg-wrapper {
  width: 100%;
  height: 100%;
}
.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-left-box {
  position: absolute;
  bottom: 8%;
  left: 5%;
  right: 15%;
  background: rgba(60, 20, 30, 0.6);
  padding: 15px 20px;
}
.hero-left-box p {
  color: white;
  font-size: 15px;
  line-height: 1.5;
}

/* Center Column - 32% */
.hero-center {
  width: 32%;
  flex: 0 0 32%;
  background: #000;
  display: flex;
  flex-direction: column;
}
.hero-center-top {
  background: #e9548b; /* Exact pink from image */
  flex: 1; /* Take remaining space */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-promo-text {
  color: white;
  font-size: 16px;
  margin-bottom: 5px;
}
.hero-logo-img {
  width: 100%;
  max-width: none;
  display: block;
}
.hero-fallback-title {
  font-size: 40px;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.hero-country-text {
  color: white;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-top: 5px;
}
.hero-center-bottom {
  height: 280px; /* Increased height */
  display: flex;
}
.hero-bottom-left {
  width: 55%;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-card-small {
  background: white;
  border-radius: 14px;
  padding: 14px; /* Reduced top padding since TAP HERE is gone */
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 210px;
}
.qr-img-wrapper {
  margin: 0 0 10px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.qr-code-img {
  width: 100%;
  max-width: 140px; /* Make QR larger inside card */
  height: auto;
  display: block;
}
.qr-desc-small {
  color: #111;
  font-size: 10px;
  text-align: left; /* Left aligned per image */
  line-height: 1.4; 
  margin-bottom: 8px;
  font-weight: 500;
}
.tiktok-creator-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 10px;
  color: #111;
  font-weight: 700;
  margin-top: auto;
}
.creator-networks-box {
  background: #111;
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 7px;
}

.hero-bottom-right {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 5px;
}
.wa-action-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.wa-action-text {
  color: #5ADA5F;
  font-weight: 700;
  font-size: 26px; /* Larger text matching image */
  letter-spacing: -0.5px;
  line-height: 1;
}
.gratis-burst-overlay {
  margin-top: 10px; 
  position: relative;
  width: 150px; /* Larger burst */
}
.gratis-burst-svg {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(-5deg);
}

/* Right Column - 30% */
.hero-right {
  width: 30%;
  flex: 0 0 30%;
  position: relative;
  overflow: hidden;
  background: #000;
  display: block;
}
.hero-bg-blur {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.hero-bg-blur img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-right-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  z-index: 2;
}
.join-bubble {
  margin-bottom: 10px;
}
.join-text-stroke {
  font-size: 32px;
  font-weight: 900;
  color: white;
  text-align: center;
  line-height: 1;
  -webkit-text-stroke: 1.5px black;
  text-shadow: 2px 2px 0 #000;
}
.hero-video-card {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: #000;
  display: block;
}
.hero-tiktok-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay-brand {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 40px 20px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}
.video-overlay-brand strong { margin-left: 2px; }

/* Hero Responsive */
@media (max-width: 900px) {
  .hero-exact { flex-direction: column; }
  .hero-col { width: 100% !important; flex: none !important; }
  .hero-center-bottom { border-top: none; }
  .hero-left { min-height: 400px; }
  .hero-right { min-height: 400px; padding: 40px 20px; }
}

/* === INTRO === */
.intro-section { padding: 80px 20px; text-align: center; }
.intro-inner { max-width: 800px; margin: 0 auto; }

.intro-title {
  font-size: 42px;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 12px;
}
.intro-subtitle {
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 1.3;
  margin-bottom: 8px;
}
.intro-text {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.intro-body {
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 28px;
}
.intro-cta-text {
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
}

/* === PEMULA === */
.pemula-section { padding: 80px 40px; }
.pemula-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pemula-badge {
  border: 3px solid var(--gold);
  border-right: 6px solid var(--blue);
  padding: 16px 24px;
  margin-bottom: 32px;
  display: inline-block;
}
.pemula-title { font-size: 28px; font-weight: 900; }
.pemula-body { font-size: 16px; line-height: 2; color: #ddd; margin-bottom: 32px; }
.pemula-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  max-height: 600px; /* Increased to reduce zoom */
  aspect-ratio: 3/4; /* Taller aspect ratio to fit portraits better */
  filter: brightness(0.95);
}

.btn-join-large {
  display: inline-block;
  background: var(--pink);
  color: white;
  text-decoration: none;
  padding: 14px 48px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 8px;
  letter-spacing: 2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232, 84, 138, 0.4);
}
.btn-join-large:hover {
  background: var(--pink-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 84, 138, 0.6);
}

/* === BENEFITS === */
.benefits-section { background: var(--darker); }

.benefit-item {
  position: relative;
  padding: 60px 60px;
  overflow: hidden;
}
.benefit-odd { background: #111; }
.benefit-even { background: #0a0a0a; }

.benefit-num-bg {
  position: absolute;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,189,89,0.08);
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.benefit-even .benefit-num-bg { right: auto; left: 20px; }

.benefit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefit-title {
  font-size: 26px;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}
.benefit-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 14px;
}
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #25D366;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 8px;
}
.wa-link:hover { text-decoration: underline; }
.wa-icon-sm { font-size: 18px; }
.benefit-divider {
  font-size: 22px;
  color: var(--gray);
  margin-bottom: 12px;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 8px;
}
.benefit-desc { font-size: 15px; color: #bbb; line-height: 1.8; }

.benefit-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  filter: brightness(0.9);
}

/* === Q&A === */
.qa-section { padding: 70px 40px; }
.qa-section-2 { background: #161620; }
.qa-inner { max-width: 1000px; margin: 0 auto; }

.qa-title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}
.qa-label {
  text-align: center;
  font-size: 15px;
  color: #aaa;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.wa-link-inline {
  color: #25D366;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.qa-card {
  background: #0a0a0a;
  border: 2px solid rgba(56, 182, 255, 0.3);
  border-left: 4px solid var(--blue);
  border-bottom: 4px solid var(--blue);
  padding: 20px;
  border-radius: 4px;
  transition: border-color 0.2s, transform 0.2s;
}
.qa-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.qa-q, .qa-a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 14px;
}
.qa-a { margin-bottom: 0; }
.qa-badge {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.qa-q-badge { background: var(--gold); color: #111; }
.qa-a-badge { background: var(--blue); color: white; }

/* Q&A with 3 items spans full width */
.qa-grid .qa-card:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 490px;
}

/* === PROCESS SECTION === */
.process-section {
  background: #0a0a10;
  padding: 80px 40px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='140' viewBox='0 0 80 140'%3E%3Cpath d='M40 0 L80 23 L80 70 L40 93 L0 70 L0 23 Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3Cpath d='M40 47 L80 70 L80 117 L40 140 L0 117 L0 70 Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
}
.process-inner { max-width: 800px; margin: 0 auto; }

.process-title {
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  color: white;
  margin-bottom: 6px;
}
.process-subtitle {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.step-arrow {
  color: var(--blue);
  font-size: 28px;
  opacity: 0.8;
  margin: 6px 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 680px;
}
.step-num {
  font-size: 40px;
  font-weight: 900;
  color: white;
  min-width: 56px;
  line-height: 1;
}
.step-num-gold { color: var(--gold); }

.step-card {
  background: white;
  border-radius: 6px;
  padding: 20px 24px;
  flex: 1;
  color: #111;
  display: flex;
  align-items: center;
  gap: 20px;
}
.step-title {
  font-size: 16px;
  font-weight: 800;
  flex: 1;
  line-height: 1.4;
}
.step-title-small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--blue);
  margin-top: 2px;
}
.step-icon { font-size: 36px; flex-shrink: 0; }
.step-desc { font-size: 13px; color: #333; line-height: 1.6; flex: 1; }

.process-joinus { text-align: center; margin-top: 50px; }

/* === AGENT SECTION === */
.agent-section {
  padding: 0;
  background: #0a0a0a;
}
.agent-bg {
  background: linear-gradient(135deg, #3a1500 0%, #1a0a00 40%, #000 70%, #0a0a20 100%);
  padding: 60px 40px;
  text-align: center;
}

.agent-logo-area { margin-bottom: 24px; }
.agent-hb-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.hb-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 3px solid var(--blue);
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  background: rgba(56,182,255,0.1);
}
.agent-brand { font-size: 32px; font-weight: 900; color: white; }
.agent-brand-sub { font-size: 14px; color: #aaa; letter-spacing: 3px; }

.agent-headline {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.agent-divider {
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 14px;
}
.agent-desc { font-size: 13px; color: #aaa; margin-bottom: 40px; }

.agent-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.agent-jp-text {
  font-size: 20px;
  line-height: 1.7;
  color: white;
  margin-bottom: 16px;
}
.wa-link-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
}
.wa-link-big:hover { text-decoration: underline; }

.agent-tiktok-card {
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 24px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.agent-tiktok-sub { font-size: 10px; color: #aaa; }
.tiktok-logo-big { font-size: 40px; }
.agent-tiktok-main { font-size: 24px; font-weight: 900; color: white; line-height: 1.2; text-align: center; }
.agent-join-badge {
  background: var(--pink);
  color: white;
  font-weight: 800;
  padding: 4px 16px;
  font-size: 14px;
  border-radius: 4px;
}
.agent-hb-small { font-size: 10px; color: #aaa; }
.click-here {
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 6px;
}

/* === FOOTER === */
.footer {
  background: #050505;
  border-top: 1px solid #222;
  padding: 50px 40px 20px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.footer-hb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.footer-name { font-size: 20px; font-weight: 900; color: white; }
.footer-country { font-size: 11px; color: #aaa; letter-spacing: 2px; }

.footer-offices { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-office h4 { font-size: 13px; color: var(--blue); margin-bottom: 6px; }
.footer-office p { font-size: 12px; color: #aaa; line-height: 1.6; }

.footer-social { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.footer-social-icon:hover { background: #333; transform: scale(1.1); }
.footer-phone, .footer-email { font-size: 12px; color: #aaa; margin-bottom: 4px; }
.footer-official { font-size: 12px; color: var(--gold); margin-top: 8px; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #222;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #555;
}
.back-to-top {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: color 0.2s;
}
.back-to-top:hover { color: white; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-left { display: none; }
  .hero-brand-title { font-size: 36px; }
  .pemula-inner { grid-template-columns: 1fr; }
  .benefit-content { grid-template-columns: 1fr; }
  .benefit-odd .benefit-img { order: -1; }
  .benefit-num-bg { display: none; }
  .qa-grid { grid-template-columns: 1fr; }
  .qa-grid .qa-card:nth-child(3) { grid-column: auto; max-width: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-offices { flex-direction: column; }
  .agent-cta { flex-direction: column; gap: 30px; }
  .navbar { flex-wrap: wrap; }
  .nav-center { order: 3; width: 100%; }
  .process-step { flex-direction: column; }
  .step-card { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .intro-title { font-size: 28px; }
  .intro-subtitle { font-size: 22px; }
  .process-title { font-size: 20px; }
  .benefit-item { padding: 40px 20px; }
  .pemula-section { padding: 40px 20px; }
  .qa-section { padding: 40px 20px; }
  .footer { padding: 40px 20px 20px; }
}

/* Scroll animations */
.benefit-item, .qa-card, .process-step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.benefit-item.visible, .qa-card.visible, .process-step.visible {
  opacity: 1;
  transform: translateY(0);
}
