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


:root{
  --bg: #F2F4F7;
  --surface: #FFFFFF;
  --surface-2: #F7F8FB;
  --surface-3: #EEF2F7;
  --ink: #0F172A;
  --muted: #475569;
  --line: rgba(15,23,42,0.10);

  /* Brand accents (premium mid-tone) */
  --accent: #0F766E;          /* deep teal */
  --accent-2: #C6B18A;        /* champagne */
  --accent-soft: rgba(15,118,110,0.12);
  --accent-2-soft: rgba(198,177,138,0.18);

  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow: 0 10px 30px rgba(15,23,42,0.08);
  --shadow-soft: 0 8px 22px rgba(15,23,42,0.06);
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 700px at 15% 10%, var(--accent-2-soft), transparent 55%), radial-gradient(900px 600px at 85% 0%, var(--accent-soft), transparent 55%), var(--bg);
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,248,251,0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(15,118,110,0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 13px;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 11px;
  color: #6b7280;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.main-nav a {
  padding: 6px 8px;
  border-radius: 999px;
  color: #374151;
}

.main-nav a:hover {
  background: rgba(15,118,110,0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 650;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 10px 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #115E59 55%, var(--accent-2) 130%);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255,255,255,0.40);
  border: 1px solid rgba(15,23,42,0.18);
  color: var(--ink);
}

.btn-outline:hover {
  background: rgba(15,118,110,0.08);
}

.btn-whatsapp-header {
  background: #22c55e;
  color: #fff;
  white-space: nowrap;
}

.btn-whatsapp-header:hover {
  background: #16a34a;
}

.btn-small {
  font-size: 13px;
  padding: 8px 14px;
}

.btn-full {
  width: 100%;
}

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  background: rgba(255,255,255,0.40);
  border: none;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
}

/* HERO */
.hero-section {
  padding: 40px 0 46px;
  background:
    radial-gradient(1100px 700px at 12% 10%, rgba(198,177,138,0.28), transparent 55%),
    radial-gradient(900px 600px at 92% 0%, rgba(15,118,110,0.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(247,248,251,0.86) 55%, rgba(242,244,247,0.92) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 30% 10%, rgba(0,0,0,0.85), transparent 62%);
  pointer-events:none;
}
.hero-section > .container{ position: relative; }


/* GEGROUP LIVE (TikTok) */
.live-section {
  padding: 54px 0;
  background:
    linear-gradient(135deg, rgba(15,118,110,0.10) 0%, rgba(198,177,138,0.12) 55%, rgba(255,255,255,0.90) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}


.live-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.live-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.live-embed-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 12px;
  overflow: hidden;
}

/* Center TikTok embed and keep it responsive */
.live-embed-card .tiktok-embed {
  margin: 0 auto;
  max-width: 1100px;
}

.live-note {
  margin: 14px 0 0;
  color: #4b5563;
  font-size: 14px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
  gap: 32px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
}

.pill-soft {
  background: rgba(15,118,110,0.08);
  color: #4b5563;
}

.pill-dark {
  background: #111827;
  color: #f9fafb;
}

.hero-text h1 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.lead {
  font-size: 15px;
  color: #4b5563;
  margin: 0 0 18px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #4b5563;
}

.hero-contact-item {
  min-width: 160px;
}

.contact-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.contact-value {
  font-weight: 500;
}

/* HERO CARD */
.hero-card {
  background: #0f172a;
  color: #f9fafb;
  border-radius: 32px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.35);
}

.hero-card-header {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 8px;
}

.hero-card-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.6);
  margin-bottom: 10px;
}

.hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* VALUE SECTION */
.value-section {
  padding: 64px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(238,242,247,0.92) 100%);
}


.pill-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.pill-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 8px 18px rgba(15,23,42,0.04);
}

.pill-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.pill-card p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.value-block {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 20px 18px;
  box-shadow: 0 8px 18px rgba(15,23,42,0.04);
}

.value-block h2 {
  font-size: 20px;
  margin-top: 0;
}

.value-block p {
  font-size: 14px;
  color: #4b5563;
}

.value-block ul {
  padding-left: 18px;
  font-size: 14px;
  color: #374151;
}

/* SHOWCASE */
.showcase-section {
  padding: 20px 0 32px;
}

.showcase-section h2 {
  font-size: 22px;
  margin-bottom: 4px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.showcase-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15,23,42,0.04);
  display: flex;
  flex-direction: column;
}

.showcase-img-wrap {
  height: 170px;
  overflow: hidden;
}

.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-body {
  padding: 12px 14px 14px;
}

.showcase-body h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.showcase-body p {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
}

/* PORTALS */
.portals-section {
  padding: 44px 0 52px;
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(198,177,138,0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(15,118,110,0.12), transparent 60%),
    rgba(247,248,251,0.90);
  border-top: 1px solid var(--line);
}


.portals-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.portal-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(15,23,42,0.06);
}

.portal-logo img {
  height: 26px;
  width: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: 0 8px 18px rgba(15,23,42,0.04);
  text-align: center;
}

.stat-number {
  font-size: 22px;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: #4b5563;
}

.advice-section h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.advice-section p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
}

.advice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* SERVICES */
.services-section {
  padding: 16px 0 32px;
}

.services-section h2 {
  font-size: 24px;
  margin-bottom: 4px;
}

.section-intro {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 6px 14px rgba(15,23,42,0.04);
  font-size: 14px;
}

.service-card h3 {
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 6px;
}

.services-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 4px;
}

.service-long {
  background: #ffffff;
  border-radius: 24px;
  padding: 18px 18px 16px;
  box-shadow: 0 8px 18px rgba(15,23,42,0.04);
}

.service-long h2 {
  font-size: 18px;
  margin-top: 0;
}

.service-long p,
.service-long ul {
  font-size: 14px;
  color: #4b5563;
}

.service-long ul {
  padding-left: 18px;
}

/* VALUATION */
.valuation-section {
  padding: 56px 0 70px;
  background: linear-gradient(135deg, rgba(198,177,138,0.14), rgba(15,118,110,0.10) 60%, rgba(255,255,255,0.92));
  border-top: 1px solid var(--line);
}


.valuation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 24px;
  align-items: flex-start;
}

.valuation-text h2 {
  font-size: 22px;
}

.valuation-text p,
.valuation-text ul {
  font-size: 14px;
  color: #4b5563;
}

.valuation-text ul {
  padding-left: 18px;
}

.valuation-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 18px 18px 20px;
  box-shadow: 0 8px 18px rgba(15,23,42,0.05);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 10px;
}

.form-field-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #374151;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.18);
  padding: 8px 10px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249,115,22,0.25);
}

.form-note {
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
}

/* FOOTER */
.site-footer {
  background: #111827;
  color: #e5e7eb;
  padding: 24px 0 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  font-size: 13px;
}

.footer-block h3 {
  font-size: 14px;
  margin-top: 0;
}

.footer-block a {
  color: #bfdbfe;
}

.footer-bottom {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: #9ca3af;
}

/* MOBILE BOTTOM BAR */
.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 16px 10px;
  background: rgba(17,24,39,0.98);
  display: none;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  z-index: 40;
}

.mobile-bottom-bar a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #f9fafb;
  font-size: 13px;
}

.mobile-bottom-bar span {
  font-size: 11px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .value-grid,
  .services-grid,
  .services-two-col,
  .stats-grid,
  .valuation-grid,
  .footer-grid,
  .showcase-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    position: absolute;
    inset: 52px 16px auto 16px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(15,23,42,0.14);
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .btn-whatsapp-header {
    display: none;
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 62px;
  }
}


/* Premium motion */
.btn, .card, .main-nav a{
  transition: transform .18s ease, filter .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
