﻿/* ==========================================================================
   JNT Consulting - Corporate Professional Landing Page CSS
   jntconsulting.asia
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700&display=swap');

/* ============================================================
   CSS Variables - Corporate Navy & Gold Theme
   ============================================================ */
:root {
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Core Colors */
  --navy-950:  #020617;
  --navy-900:  #0f172a;
  --navy-800:  #1e293b;
  --navy-700:  #334155;
  --navy-600:  #475569;

  --gold-400:  #f59e0b;
  --gold-500:  #d97706;
  --gold-600:  #b45309;

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;

  --white:     #ffffff;
  --accent-teal: #0d9488;
  --accent-emerald: #059669;

  /* Semantic */
  --bg-body:    var(--slate-50);
  --bg-card:    var(--white);
  --bg-section-alt: #f0f4fa;

  --text-heading: var(--navy-900);
  --text-body:    var(--navy-700);
  --text-muted:   var(--slate-400);
  --text-on-dark: var(--white);

  --border-light: #dde3ef;
  --border-card:  #e8edf5;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f2d52 100%);
  --grad-gold:    linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  --grad-teal:    linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-emerald) 100%);
  --grad-card:    linear-gradient(145deg, #ffffff 0%, #f5f8ff 100%);
  --grad-section: linear-gradient(180deg, var(--slate-50) 0%, #edf0f9 100%);

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md:   0 4px 16px rgba(15, 23, 42, 0.10), 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-lg:   0 16px 48px rgba(15, 23, 42, 0.14), 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-xl:   0 32px 80px rgba(15, 23, 42, 0.20);
  --shadow-gold: 0 8px 32px rgba(217, 119, 6, 0.25);
  --shadow-navy: 0 8px 40px rgba(15, 23, 42, 0.35);

  /* Nav */
  --nav-height: 80px;
  --container-max: 1200px;

  /* Transitions */
  --t-fast:   0.18s ease;
  --t-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:   0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  line-height: 1.65;
  background-color: var(--bg-body);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--slate-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy-700); }

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
}
p { color: var(--text-body); }
a { transition: var(--t-fast); }

.text-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--t-normal);
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--grad-gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(217, 119, 6, 0.4);
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

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

/* ============================================================
   Badge
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--gold-600);
  border: 1px solid rgba(217, 119, 6, 0.25);
  margin-bottom: 1.25rem;
}

/* ============================================================
   Section Header
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px auto;
}

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--navy-900);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--navy-600);
  line-height: 1.7;
}

/* ============================================================
   Header / Navigation
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--t-normal);
  background: transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 68px;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

header.scrolled .nav-link { color: var(--navy-700); }
header.scrolled .nav-link:hover,
header.scrolled .nav-link.active { color: var(--navy-900); }
header.scrolled .logo-text { color: var(--navy-900); }
header.scrolled .nav-link::after { background: var(--grad-gold); }
header.scrolled .btn-secondary { color: var(--navy-900); border-color: var(--navy-700); }
header.scrolled .btn-secondary:hover { background: var(--navy-900); color: var(--white); }
header.scrolled .nav-toggle span { background: var(--navy-900); }

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-img {
  height: 38px;
  width: auto;
  border-radius: 6px;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-container { display: flex; align-items: center; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-link {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--t-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: var(--t-fast);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  margin-left: 24px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: var(--t-normal);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero Section
   ============================================================ */
#hero {
  background: var(--grad-hero);
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(245, 158, 11, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 800;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-trust-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
}

.hero-trust-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  padding: 1.75rem;
  transition: var(--t-slow);
}

.hfc-main {
  width: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.hfc-main-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.hfc-main-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.hfc-main-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.hfc-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 8px;
  overflow: hidden;
}

.hfc-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--grad-gold);
}

.hfc-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hfc-stat-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.hfc-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hfc-secondary {
  width: 200px;
  padding: 1.25rem;
  z-index: 2;
}

.hfc-left {
  left: 0%;
  top: 18%;
  transform: rotate(-6deg);
  animation: floatCardReverse 8s ease-in-out infinite;
}

.hfc-right {
  right: 0%;
  bottom: 18%;
  transform: rotate(5deg);
  animation: floatCard2 7s ease-in-out infinite 1s;
}

.hfc-sec-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--white);
}

.hfc-sec-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.hfc-sec-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
}

/* The old mockup classes now just hide */
.hero-mockups-container,
.mockup-item,
.mockup-main,
.mockup-back-left,
.mockup-back-right,
.hero-glow-back { display: none; }

/* Background Orbs - hidden for light version */
.bg-glow-mesh { display: none; }

@keyframes floatCard {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50% { transform: translate(-50%, -50%) translateY(-14px); }
}

@keyframes floatCard2 {
  0%, 100% { transform: rotate(5deg) translateY(0px); }
  50% { transform: rotate(5deg) translateY(-12px); }
}

@keyframes floatCardReverse {
  0%, 100% { transform: rotate(-6deg) translateY(0px); }
  50% { transform: rotate(-6deg) translateY(12px); }
}

/* ============================================================
   Services / Apps Section
   ============================================================ */
#apps {
  background: var(--bg-body);
  position: relative;
}

.apps-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--white);
  border: 1.5px solid var(--border-card);
  color: var(--navy-600);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--t-normal);
}

.tab-btn:hover {
  border-color: var(--gold-500);
  color: var(--gold-600);
}

.tab-btn.active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.app-card {
  grid-column: span 6;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--t-normal);
}

.app-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(217, 119, 6, 0.2);
}

.app-card.featured {
  grid-column: span 12;
  flex-direction: row;
}

.app-card-img {
  flex: 1;
  min-height: 260px;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.app-card-img img {
  width: 70%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  transition: var(--t-normal);
  position: relative;
  z-index: 1;
}

.app-card-img img.img-large { width: 80%; }

.app-card:hover .app-card-img img {
  transform: scale(1.04) translateY(-8px);
}

.app-card-info {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-card.featured .app-card-img { flex: 1.2; }
.app-card.featured .app-card-info { flex: 0.8; }

.app-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-600);
  margin-bottom: 0.75rem;
}

.app-title {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy-900);
}

.app-description {
  font-size: 1rem;
  color: var(--navy-600);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.app-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.2rem;
  background: var(--slate-100);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--navy-800);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--t-normal);
}

.store-btn:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  transform: translateY(-2px);
}

.app-card.hide { display: none; }
.app-card.show { animation: cardFadeIn 0.45s ease forwards; }

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

/* ============================================================
   Features Section
   ============================================================ */
#features {
  background: var(--bg-section-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.feature-tile {
  padding: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-top: 3px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--t-normal);
}

.feature-tile:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-top-color: var(--gold-500);
}

.feature-tile-4 { grid-column: span 4; }

.feature-tile-8 {
  grid-column: span 8;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(245, 158, 11, 0.06) 100%);
  border: 1px solid rgba(217, 119, 6, 0.2);
  margin-bottom: 1.5rem;
  color: var(--gold-600);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.feature-tile-8 .feature-icon-box { margin-bottom: 0; }

.feature-tile h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--navy-900);
}

.feature-tile p {
  color: var(--navy-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   About Section
   ============================================================ */
#about { background: var(--bg-body); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-shape-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-shape {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-navy);
  overflow: hidden;
}

.about-content-box {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2.5rem;
}

.about-content-box i {
  font-size: 3.5rem;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
  display: block;
}

.about-content-box h3 {
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.about-content-box p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--navy-900);
}

.about-content > p {
  font-size: 1.05rem;
  color: var(--navy-600);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.about-list { list-style: none; }

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  color: var(--navy-700);
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border-light);
}

.about-list-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-list-item i {
  color: var(--gold-500);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   Contact Section
   ============================================================ */
#contact { background: var(--bg-section-alt); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  padding: 60px;
  box-shadow: var(--shadow-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--navy-900);
}

.contact-info > p {
  font-size: 1.05rem;
  color: var(--navy-600);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(217,119,6,0.1) 0%, rgba(245,158,11,0.06) 100%);
  border: 1px solid rgba(217,119,6,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-detail-text p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--navy-900);
  font-weight: 600;
}

.contact-form { padding: 0; }

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--slate-50);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--t-normal);
  outline: none;
}

.form-control::placeholder { color: var(--slate-400); }

.form-control:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
  background: var(--white);
}

textarea.form-control { resize: none; }

.form-submit-btn {
  width: 100%;
  border: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.form-success-msg {
  display: none;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: var(--accent-emerald);
  padding: 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  margin-top: 15px;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 70px 0 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 56px;
}

.footer-brand .logo-text { color: var(--white); }

.footer-brand p {
  margin-top: 18px;
  max-width: 280px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-brand p a {
  color: var(--gold-400);
  text-decoration: none;
}

.footer-heading {
  font-size: 0.78rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  transition: var(--t-fast);
  font-size: 0.92rem;
}

.footer-links a:hover { color: var(--gold-400); }

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--t-normal);
}

.social-icon:hover {
  background: var(--grad-gold);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}

.footer-copy a {
  color: var(--gold-400);
  text-decoration: none;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  transition: var(--t-fast);
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 3rem; }
  .apps-grid { gap: 20px; }
  .app-card { grid-column: span 12; }
  .app-card.featured { flex-direction: column; }
  .app-card.featured .app-card-img { min-height: 280px; }
  .app-card-info { padding: 2rem; }
  .features-grid { gap: 20px; }
  .feature-tile-4 { grid-column: span 6; }
  .feature-tile-8 { grid-column: span 12; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { order: 2; }
  .contact-wrapper { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    transition: var(--t-normal);
    z-index: 999;
  }
  .nav-menu .nav-link { color: var(--navy-800); font-size: 1.1rem; }
  .nav-menu.open { left: 0; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content::before { margin: 0 auto 1.5rem; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { height: 360px; }
  .hfc-main { width: 240px; }
  .hfc-secondary { display: none; }
  .section-header h2 { font-size: 2rem; }
  .feature-tile-4 { grid-column: span 12; }
  .feature-tile-8 { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-wrapper { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust-divider { display: none; }
  .app-links { flex-direction: column; }
  .store-btn { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
  .contact-wrapper { padding: 20px; }
  section { padding: 72px 0; }
}
