/* ===========================
   DPA SmartCloud — Design System
   =========================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.556;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* --- Custom Properties --- */
:root {
  --color-navy: #0D1233;
  --color-blue: #1930AB;
  --color-cyan: #00BCD4;
  --color-magenta: #CC3366;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --color-text: #333333;
  --color-text-muted: #666666;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --spacing-section: 80px;
  --max-width: 1200px;
  --border-radius: 8px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

h1 {
  font-size: 36px;
  line-height: 1.222;
}

h2 {
  font-size: 28px;
  line-height: 1.286;
}

h3 {
  font-size: 22px;
  line-height: 1.364;
}

h4 {
  font-size: 18px;
  line-height: 1.444;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-small {
  font-size: 14px;
  line-height: 1.571;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Section Spacing --- */
.section {
  padding: var(--spacing-section) 0;
}

.section--white {
  background: var(--color-white);
}

.section--gray {
  background: var(--color-light-gray);
}

.section--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--gradient {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 100%);
  color: var(--color-white);
}

.section--gradient h2,
.section--gradient h3 {
  color: var(--color-white);
}

/* --- Section Labels --- */
.section-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 12px;
  display: block;
}

.section--dark .section-label,
.section--gradient .section-label {
  color: var(--color-cyan);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  gap: 8px;
}

.btn--primary {
  background: var(--color-cyan);
  color: var(--color-navy);
}

.btn--primary:hover {
  background: #00a5bb;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 188, 212, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-cyan);
  border: 2px solid var(--color-cyan);
}

.btn--outline:hover {
  background: var(--color-cyan);
  color: var(--color-navy);
  transform: translateY(-2px);
}

/* --- Cards --- */
.card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.card--dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.card__title {
  font-size: 20px;
  margin-bottom: 12px;
}

.card__text {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.625;
}

.card--dark .card__text {
  color: rgba(255, 255, 255, 0.7);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-cyan);
  font-weight: 600;
  font-size: 15px;
  margin-top: 16px;
  transition: gap 0.2s ease;
}

.card__link:hover {
  gap: 10px;
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.grid--5 { grid-template-columns: 1fr; }

/* --- Form Inputs --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: border-color 0.2s ease;
  background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-group .error-message {
  color: var(--color-magenta);
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--color-magenta);
}

.form-group.has-error .error-message {
  display: block;
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: var(--color-navy);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo img {
  height: 50px;
  width: auto;
  mix-blend-mode: screen;
  transition: mix-blend-mode 0.3s ease;
}

/* Desktop Nav */
.main-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav__item {
  position: relative;
}

.main-nav__link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.main-nav__link .arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  margin-top: 4px;
}

.main-nav__item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__link {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-text);
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown__link:hover {
  background: var(--color-light-gray);
  color: var(--color-blue);
}

/* Mobile Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-navy);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  transition: background 0.2s ease;
}

.mobile-nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav__divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 8px 0;
}

.mobile-nav__sublabel {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-top: 16px;
  margin-bottom: 4px;
}

.mobile-nav__sublink {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 24px;
  transition: color 0.2s ease;
}

.mobile-nav__sublink:hover {
  color: var(--color-white);
}

.header-cta {
  display: none;
}

/* ===========================
   HERO SECTIONS
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 18, 51, 0.85) 0%, rgba(25, 48, 171, 0.6) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 20px;
}

.hero__title {
  font-size: 36px;
  line-height: 1.222;
  color: var(--color-white);
  margin-bottom: 20px;
  max-width: 720px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.667;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Page Hero (shorter, for inner pages) */
.hero--page {
  min-height: auto;
  padding: 160px 0 80px;
}

/* Trust Bar */
.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-bar__item {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.trust-bar__item:last-child {
  border-right: none;
}

/* ===========================
   HOME — PRODUCTS GRID
   =========================== */
.products-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

/* ===========================
   HOME — GIFT CITY SECTION
   =========================== */
.section--gift-city {
  position: relative;
  background-size: cover;
  background-position: center;
}

.section--gift-city::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 18, 51, 0.9) 0%, rgba(25, 48, 171, 0.8) 100%);
}

.section--gift-city .container {
  position: relative;
  z-index: 2;
}

.gift-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}

/* ===========================
   HOME — STATS SECTION
   =========================== */
.section--stats {
  position: relative;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.section--stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 18, 51, 0.88) 0%, rgba(25, 48, 171, 0.75) 100%);
}

.section--stats .container {
  position: relative;
  z-index: 2;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.stats-backing {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.stats-backing a {
  color: var(--color-cyan);
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.stats-backing a:hover {
  opacity: 0.8;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  text-align: center;
  padding: var(--spacing-section) 0;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  font-size: 18px;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col__logo {
  height: 45px;
  width: auto;
  margin-bottom: 12px;
  mix-blend-mode: screen;
}

.footer-col__tagline {
  font-size: 13px;
  color: var(--color-cyan);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.footer-col__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-col__links a:hover {
  color: var(--color-cyan);
}

.footer-col__address {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  font-style: normal;
}

.footer-col__badge {
  font-size: 12px;
  color: var(--color-cyan);
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}

.footer-col__auth {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  font-size: 13px;
  text-align: center;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--color-cyan);
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   PRODUCT / SERVICE PAGE STYLES
   =========================== */

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 28px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--color-cyan);
}

.feature-card h4 {
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Process / How It Works */
.process {
  margin-top: 40px;
}

.process__image {
  max-width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.process-step__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-cyan);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__content h4 {
  margin-bottom: 4px;
}

.process-step__content p {
  font-size: 15px;
  color: var(--color-text-muted);
}

/* Use Case Cards */
.usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.usecase-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 32px;
  border: 1px solid #eee;
}

.usecase-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.usecase-card h4 {
  margin-bottom: 8px;
}

.usecase-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Differentiator Section */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.diff-card {
  text-align: center;
  padding: 32px 24px;
}

.diff-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.diff-card h4 {
  color: var(--color-white);
  margin-bottom: 8px;
}

.diff-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-auth {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-auth__image {
  max-width: 280px;
  margin: 0 auto;
}

.about-auth__details dt {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 14px;
  margin-top: 12px;
}

.about-auth__details dd {
  color: var(--color-text-muted);
  font-size: 15px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.leader-card {
  text-align: center;
}

img.leader-card__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 20px;
  border: 4px solid var(--color-light-gray);
  max-width: 180px;
}

.leader-card__name {
  font-size: 22px;
  margin-bottom: 4px;
}

.leader-card__name a.leader-link {
  color: var(--color-navy);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.leader-card__name a.leader-link:hover {
  color: var(--color-cyan);
  border-bottom-color: var(--color-cyan);
}

.leader-card__title {
  color: var(--color-cyan);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Leader Modal */
.leader-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.leader-modal.active {
  display: flex;
}

.leader-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 18, 51, 0.7);
  backdrop-filter: blur(4px);
}

.leader-modal__content {
  position: relative;
  background: var(--color-white);
  border-radius: 12px;
  max-width: 640px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.leader-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: var(--color-text-muted);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}

.leader-modal__close:hover {
  color: var(--color-navy);
}

.leader-modal__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.leader-modal__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 3px solid var(--color-light-gray);
}

.leader-modal__header h3 {
  font-size: 24px;
  font-family: var(--font-heading);
  color: var(--color-navy);
  margin-bottom: 4px;
}

.leader-modal__title {
  font-size: 14px;
  color: var(--color-cyan);
  font-weight: 600;
}

.leader-modal__body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 14px;
}

.leader-modal__body p:last-child {
  margin-bottom: 0;
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.location-grid iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: var(--border-radius);
}

.location-address {
  font-size: 16px;
  line-height: 1.8;
  font-style: normal;
}

/* ===========================
   GIFT CITY PAGE
   =========================== */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.benefit-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 32px;
  border: 1px solid #eee;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.benefit-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.benefit-card h3 {
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.client-benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.client-benefit h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--color-blue);
}

.client-benefit p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--color-light-gray);
  border-radius: var(--border-radius);
  padding: 24px;
  margin-bottom: 20px;
}

.contact-info-card h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.contact-info-card p,
.contact-info-card address {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: normal;
}

.contact-info-card a {
  color: var(--color-cyan);
  font-weight: 500;
}

.form-success,
.form-error {
  padding: 16px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  display: none;
  font-size: 15px;
}

.form-success {
  background: rgba(0, 188, 212, 0.1);
  color: #00838f;
  border: 1px solid rgba(0, 188, 212, 0.3);
}

.form-error {
  background: rgba(204, 51, 102, 0.1);
  color: var(--color-magenta);
  border: 1px solid rgba(204, 51, 102, 0.3);
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.legal-note {
  background: var(--color-light-gray);
  border-radius: var(--border-radius);
  padding: 24px;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  border-left: 4px solid var(--color-cyan);
}
