/* =========================================================
   아고다 10시 선착순 할인쿠폰 - Stylesheet
   Mobile-first, conversion-focused
   ========================================================= */

:root {
  --navy: #0b1f3a;
  --navy-2: #14305b;
  --red: #d32f2f;
  --red-dark: #a71d1d;
  --coral: #ff6b4a;
  --coral-2: #ff8a65;
  --yellow: #ffd23f;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-card: #ffffff;
  --text: #1a1d24;
  --text-soft: #4a5160;
  --text-mute: #7a8294;
  --border: #e6e8ef;
  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.06), 0 1px 3px rgba(11, 31, 58, 0.04);
  --shadow-md: 0 4px 12px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 12px 32px rgba(11, 31, 58, 0.12);
  --shadow-xl: 0 24px 60px rgba(11, 31, 58, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --max-w: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: keep-all;
}

a { color: var(--navy-2); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 { font-size: clamp(1.95rem, 6vw, 3.1rem); line-height: 1.18; }
h2 { font-size: clamp(1.45rem, 4vw, 2rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* ============== Header ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.brand {
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand .dot { color: var(--red); }
.nav { display: flex; gap: 18px; }
.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 4px;
}
.nav a.active { color: var(--red); }

/* ============== HERO (REDESIGNED) ============== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #081832 0%, #0b1f3a 40%, #14305b 100%);
  color: #fff;
  padding: 56px 0 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 90% -10%, rgba(255,210,63,0.22), transparent 60%),
    radial-gradient(560px 320px at -10% 110%, rgba(255,107,74,0.22), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.hero-text { position: relative; }
.hero h1 { color: #fff; }
.hero h1 .hl {
  background: linear-gradient(180deg, var(--yellow) 0%, #ffaa1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(255,210,63,0.4);
}
.badge.badge-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.hero .sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  margin: 16px 0 22px;
  max-width: 560px;
}
.hero .sub strong { color: var(--yellow); }

.countdown-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 16px 18px;
  max-width: 460px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.countdown .unit {
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  padding: 10px 8px;
  flex: 1;
  text-align: center;
  min-width: 60px;
}
.countdown .num {
  font-size: clamp(1.6rem, 5.5vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
}
.countdown .lbl {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.countdown .sep {
  color: var(--yellow);
  font-size: 1.4rem;
  font-weight: 800;
  padding-bottom: 12px;
}
.countdown-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 10px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--coral) 0%, #ff5a3c 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
  padding: 15px 26px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(255,107,74,0.4);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
}
.cta:hover {
  background: linear-gradient(135deg, #ff7c5e 0%, #ff6643 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(255,107,74,0.55);
  text-decoration: none;
}
.cta.cta-lg { padding: 17px 32px; font-size: 1.08rem; }
.cta.cta-ghost {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.cta.cta-ghost:hover { background: #fff8e6; }
.cta.cta-sm { padding: 11px 18px; font-size: 0.95rem; }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-rating { color: rgba(255,255,255,0.88); font-size: 0.9rem; line-height: 1.3; }
.hero-rating .stars { color: var(--yellow); letter-spacing: 0.1em; font-size: 1rem; }
.hero-rating .rating-text strong { color: #fff; }

.hero-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
}
.hero-meta li::before { content: "✓ "; color: var(--yellow); font-weight: 800; }

/* Hero visual (phone card + floating cards) */
.hero-visual {
  position: relative;
  min-height: 360px;
  margin: 12px auto 0;
  max-width: 460px;
  width: 100%;
}
.phone-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(-2deg);
}
.phone-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.phone-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(211,47,47,0.4);
}
.phone-tag .tag-pct {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}
.phone-tag .tag-lbl {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  margin-top: 2px;
  opacity: 0.92;
}
.phone-info { padding: 16px 18px 18px; }
.phone-info .hotel-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 4px;
}
.phone-info .price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.phone-info .price s {
  color: var(--text-mute);
  font-size: 0.9rem;
}
.phone-info .price strong {
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 900;
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 6px 12px 6px 6px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--navy);
}
.float-card img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}
.float-card span { white-space: nowrap; }
.float-card-1 {
  bottom: -14px;
  left: -10px;
  transform: rotate(-4deg);
}
.float-card-2 {
  top: 8px;
  right: -16px;
  transform: rotate(3deg);
}

/* ============== Trust strip ============== */
.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  text-align: center;
}
.trust-item {
  padding: 18px 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-item:nth-child(2n) { border-right: none; }
.trust-item:nth-child(n+3) { border-bottom: none; }
.trust-item strong {
  display: block;
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 2px;
}

/* ============== Sections ============== */
section { padding: 64px 0; }
section.alt { background: var(--bg-soft); }
.section-eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-lead {
  color: var(--text-soft);
  font-size: 1.02rem;
  max-width: 720px;
  margin-bottom: 36px;
}

/* ============== About grid (with image) ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 12px;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ============== Info table ============== */
.info-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.info-table .row {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-bottom: 1px solid var(--border);
}
.info-table .row:last-child { border-bottom: none; }
.info-table .k {
  background: var(--bg-soft);
  padding: 14px 18px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}
.info-table .v {
  padding: 14px 18px;
  color: var(--text-soft);
  font-size: 0.97rem;
}
.info-table .v strong { color: var(--text); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}
.step {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.step .num {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.step h3 { margin: 2px 0 4px; font-size: 1.02rem; }
.step p { margin: 0; color: var(--text-soft); font-size: 0.94rem; }

/* ============== Destinations gallery ============== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.dest-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/5;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.dest-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 60px 16px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(11,31,58,0.85) 100%);
  color: #fff;
}
.dest-name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.dest-price {
  font-size: 0.84rem;
  color: var(--yellow);
  font-weight: 700;
  margin-top: 2px;
}

/* ============== Coupon Cards (REDESIGNED) ============== */
.coupon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.coupon-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.coupon-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.coupon-card .cc-top {
  position: relative;
  padding: 22px 22px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.coupon-card .cc-top::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 16px;
  background-image: radial-gradient(circle at 8px 0, transparent 6px, #fff 6.5px);
  background-size: 16px 16px;
  background-repeat: repeat-x;
  background-position: 0 -8px;
}
.coupon-card .cc-pct {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.coupon-card .cc-pct span {
  font-size: 1.4rem;
  font-weight: 800;
  margin-left: 2px;
  opacity: 0.92;
}
.coupon-card .cc-brand {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: right;
  opacity: 0.95;
}
.coupon-card .cc-body {
  padding: 22px 22px 16px;
  flex: 1;
}
.coupon-card .cc-body h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}
.coupon-card .cc-meta {
  color: var(--text-mute);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.coupon-card .cc-body p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-soft);
}
.coupon-card .cc-cta {
  display: block;
  margin: 0 22px 22px;
  padding: 12px 18px;
  text-align: center;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background .15s ease;
}
.coupon-card .cc-cta:hover {
  background: var(--navy-2);
  text-decoration: none;
}

/* Per-category color top */
.cc-pay-yellow .cc-top { background: linear-gradient(135deg, #ffd23f 0%, #ffa726 100%); color: #2a1d00; }
.cc-pay-green  .cc-top { background: linear-gradient(135deg, #03c75a 0%, #028a3f 100%); }
.cc-pay-blue   .cc-top { background: linear-gradient(135deg, #3182f6 0%, #1d5fd6 100%); }
.cc-card-visa  .cc-top { background: linear-gradient(135deg, #1a1f71 0%, #0d50a0 100%); }
.cc-card-master .cc-top { background: linear-gradient(135deg, #eb001b 0%, #f79e1b 100%); }
.cc-card-kr    .cc-top { background: linear-gradient(135deg, #4a5160 0%, #1a1d24 100%); }
.cc-code-asia  .cc-top { background: linear-gradient(135deg, #00897b 0%, #004d40 100%); }
.cc-code-new   .cc-top { background: linear-gradient(135deg, #8e44ad 0%, #5b2c8a 100%); }
.cc-code-wed   .cc-top { background: linear-gradient(135deg, #ff6b4a 0%, #d32f2f 100%); }

.coupon-card.featured {
  border: 2px solid var(--coral);
  box-shadow: 0 12px 30px rgba(255,107,74,0.18);
}
.coupon-card.featured::before {
  content: "BEST";
  position: absolute;
  top: 14px;
  right: -28px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  font-size: 0.7rem;
  padding: 3px 32px;
  letter-spacing: 0.12em;
  transform: rotate(35deg);
  z-index: 2;
}

/* ============== CTA Banner ============== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 250px at 100% 0%, rgba(255,210,63,0.18), transparent 60%),
    radial-gradient(400px 200px at 0% 100%, rgba(255,107,74,0.18), transparent 60%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.cta-banner-text h2 { color: #fff; margin-bottom: 8px; }
.cta-banner-text p { color: rgba(255,255,255,0.8); margin: 0; }

/* ============== FAQ ============== */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}
.faq-q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  color: var(--text-soft);
  font-size: 0.96rem;
}
.faq-a-inner { padding: 0 20px 18px; }

/* ============== Support hero ============== */
.support-hero {
  position: relative;
  background: linear-gradient(135deg, #081832 0%, #14305b 100%);
  color: #fff;
  padding: 56px 0 64px;
  overflow: hidden;
}
.support-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
}
.support-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.support-hero .container { position: relative; z-index: 2; }
.support-hero h1 { color: #fff; margin: 12px 0 14px; }
.support-hero .sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 22px;
  max-width: 600px;
}
.support-hero .crumb { color: rgba(255,255,255,0.75); padding: 0 0 14px; }
.support-hero .crumb a { color: rgba(255,255,255,0.75); }

/* ============== Contact box (support page) ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.contact-img {
  height: 140px;
  overflow: hidden;
  background: var(--bg-soft);
}
.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-box h3 {
  margin: 18px 22px 10px;
  font-size: 1rem;
  color: var(--red);
  letter-spacing: 0.02em;
}
.contact-box .big-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  display: block;
  margin: 0 22px 4px;
}
.contact-box ul {
  margin: 0 22px 22px;
  padding-left: 18px;
  color: var(--text-soft);
}
.contact-box ul li { margin-bottom: 4px; }
.contact-box .mail-link {
  font-weight: 700;
  color: var(--navy-2);
  word-break: break-all;
  margin: 0 22px;
  display: inline-block;
}

.tip-box {
  background: #fff8e6;
  border: 1px solid #ffe58f;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 18px;
}
.tip-box h3 { margin: 0 0 8px; color: var(--navy); font-size: 1rem; }
.tip-box ul { margin: 0; padding-left: 18px; color: var(--text-soft); font-size: 0.94rem; }
.tip-box ul li { margin-bottom: 4px; }

/* Recommendation cards */
.rec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.rec-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.rec-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.rec-img {
  height: 160px;
  overflow: hidden;
}
.rec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.rec-card:hover .rec-img img { transform: scale(1.06); }
.rec-card .tag {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--navy-2);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 18px 20px 10px;
}
.rec-card h3 { margin: 0 20px 6px; font-size: 1.05rem; }
.rec-card p { color: var(--text-soft); font-size: 0.94rem; margin: 0 20px 14px; flex: 1; }
.rec-card .cta { margin: 0 20px 20px; }

/* ============== Breadcrumb ============== */
.crumb {
  font-size: 0.85rem;
  color: var(--text-mute);
  padding: 14px 0 0;
}
.crumb a { color: var(--text-mute); }
.crumb .sep { margin: 0 6px; }

/* ============== Footer ============== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 36px 0 28px;
  margin-top: 0;
  font-size: 0.9rem;
}
.site-footer .brand { color: #fff; }
.site-footer p { margin: 8px 0; }
.site-footer a { color: var(--yellow); }
.site-footer .links { display: flex; gap: 18px; margin: 12px 0 6px; flex-wrap: wrap; }

/* ============== Responsive ============== */
@media (min-width: 640px) {
  .coupon-grid { grid-template-columns: repeat(2, 1fr); }
  .rec-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-inner { grid-template-columns: repeat(4, 1fr); }
  .trust-item { border-bottom: none; }
  .trust-item:last-child { border-right: none; }
  .cta-banner-inner { grid-template-columns: 1fr auto; text-align: left; }
}
@media (min-width: 960px) {
  .coupon-grid { grid-template-columns: repeat(3, 1fr); }
  .rec-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 80px 0 100px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .hero-visual { margin: 0; max-width: none; }
  .info-table .row { grid-template-columns: 200px 1fr; }
  .about-grid { grid-template-columns: 0.9fr 1.1fr; align-items: stretch; }
  .about-image img { height: 100%; min-height: 320px; }
}
