/* =============================================
   WINSUM BRANDS — Custom Website Stylesheet
   Brand Colors: Navy #011e37 | Gold #ffe372
   ============================================= */

/* --- CSS Variables --- */
:root {
  --navy: #011e37;
  --navy-light: #0a2d4d;
  --navy-dark: #001224;
  --gold: #ffe372;
  --gold-dark: #e6c94d;
  --gold-light: #fff4c2;
  --white: #ffffff;
  --off-white: #f8f7f2;
  --gray-100: #f4f4f4;
  --gray-200: #e8e8e8;
  --gray-400: #999999;
  --gray-600: #666666;
  --gray-800: #333333;
  --text-dark: #1a1a1a;
  --text-light: #ffffffdd;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow-sm: 0 2px 8px rgba(1, 30, 55, 0.06);
  --shadow-md: 0 4px 24px rgba(1, 30, 55, 0.1);
  --shadow-lg: 0 12px 48px rgba(1, 30, 55, 0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Spacing --- */
section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(1, 30, 55, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
  cursor: pointer !important;
}

.nav-logo img {
  height: 48px;
  width: auto;
  cursor: pointer !important;
  pointer-events: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

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

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 227, 114, 0.3);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  background: none;
  border: none;
  padding: 12px;
  -webkit-tap-highlight-color: transparent;
}

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

/* Mobile nav backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-backdrop.active {
  display: block;
  opacity: 1;
}

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

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  background-image: url('../images-new-website/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(1, 30, 55, 0.50) 0%,
    rgba(1, 30, 55, 0.72) 30%,
    rgba(1, 30, 55, 0.90) 60%,
    rgba(1, 30, 55, 0.97) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 227, 114, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 227, 114, 0.1);
  border: 1px solid rgba(255, 227, 114, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 227, 114, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Custom cursor (favicon W) — site-wide */
body {
  cursor: none;
}

body * {
  cursor: none;
}

/* Show hand pointer on clickable elements */
a, button, input[type="submit"], .btn, .btn-submit, .nav-cta, .faq-question, .nav-toggle,
a img, a svg, button img, button svg,
.nav-logo, .nav-logo img {
  cursor: pointer !important;
}

/* Show text cursor on form inputs */
input[type="text"], input[type="email"], textarea {
  cursor: text !important;
}

.hero-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease, filter 0.2s ease;
  filter: drop-shadow(0 0 4px rgba(255, 227, 114, 0.7));
}

/* On light backgrounds: make the icon navy #011e37 */
.hero-cursor.on-light {
  filter: brightness(0) saturate(100%) invert(8%) sepia(53%) saturate(4600%) hue-rotate(196deg) brightness(95%) contrast(104%)
          drop-shadow(0 0 4px rgba(1, 30, 55, 0.4));
}

.hero-cursor.active {
  opacity: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* --- Marquee --- */
.marquee-section {
  padding: 20px 0;
  background: var(--gold);
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.marquee-track span::before {
  content: '●';
  margin-right: 24px;
  font-size: 0.5rem;
  vertical-align: middle;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Benefits Section --- */
.benefits {
  background: var(--off-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 227, 114, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.benefit-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Why Choose Us (Numbered Sections) --- */
.why-section {
  background: var(--white);
}

.why-items {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--gray-200);
  cursor: default;
  transition: background var(--transition);
  position: relative;
}

.why-item:last-child {
  border-bottom: 1px solid var(--gray-200);
}

.why-item:hover {
  background: var(--off-white);
}

.why-item:hover .why-number {
  color: var(--gold-dark);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-400);
  min-width: 40px;
  transition: color var(--transition);
}

.why-content {
  flex: 1;
}

.why-content h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 8px;
}

.why-content p {
  font-size: 0.95rem;
  max-width: 600px;
}

.why-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--gray-400);
  transition: transform var(--transition), color var(--transition);
}

.why-item:hover .why-arrow {
  transform: translateX(6px);
  color: var(--gold-dark);
}

/* --- Stats Section --- */
.stats-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- FAQ Section --- */
.faq-section {
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 24px 0;
}

.faq-answer-inner p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--navy);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 227, 114, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-section .btn {
  position: relative;
}

/* --- Contact Form Section --- */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-info h3 {
  color: var(--navy);
  margin-bottom: 24px;
}

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

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 227, 114, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.95rem;
}

.contact-detail a {
  color: var(--gold-dark);
  font-weight: 500;
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* Form Styles */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 227, 114, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  background: var(--navy);
  color: var(--white);
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-submit:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 24px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-logo img {
  height: 100px;
  width: auto;
  mix-blend-mode: screen;
  pointer-events: none;
}

.footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
  width: fit-content;
}

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

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

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

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

/* --- About Page Specific --- */
.page-hero {
  min-height: 50vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(255, 227, 114, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto;
}

/* Mission / Vision / Values */
.mvv-section {
  background: var(--white);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.mvv-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mvv-card .mvv-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(255, 227, 114, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.mvv-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.mvv-card p {
  font-size: 0.95rem;
}

/* Our Story */
.story-section {
  background: var(--off-white);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.9;
}

/* Process Section */
.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--off-white);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

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

.process-card p {
  font-size: 0.9rem;
}

/* --- Contact Page Specific --- */
.contact-page-section {
  background: var(--white);
  padding-top: 60px;
}

/* --- Responsive --- */
/* ========== RESPONSIVE — TABLET (max-width: 1024px) ========== */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== RESPONSIVE — MOBILE (max-width: 768px) ========== */
@media (max-width: 768px) {

  /* --- Disable custom cursor on touch devices --- */
  body, body * {
    cursor: auto !important;
  }

  .hero-cursor {
    display: none !important;
  }

  /* --- Base spacing --- */
  section {
    padding: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* --- Navigation --- */
  .navbar {
    height: 64px;
    padding: 0 16px;
  }

  .nav-logo img {
    height: 36px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--navy);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    z-index: 1001;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    opacity: 1;
  }

  .nav-cta {
    text-align: center;
    width: 100%;
    display: block !important;
    padding: 14px 24px !important;
  }

  .nav-toggle {
    display: flex;
  }

  /* --- Hero --- */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 64px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 28px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat .number {
    font-size: 1.1rem;
  }

  .hero-stat .label {
    font-size: 0.7rem;
  }

  .hero-scroll {
    display: none;
  }

  /* --- Marquee --- */
  .marquee-section {
    padding: 12px 0;
  }

  .marquee-track span {
    font-size: 0.7rem;
    padding: 0 14px;
  }

  /* --- Section headings --- */
  .section-label {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* --- Benefits --- */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    padding: 24px 20px;
  }

  /* --- Why Choose Us --- */
  .why-item {
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
  }

  .why-number {
    font-size: 0.9rem;
  }

  .why-content h3 {
    font-size: 1.1rem;
  }

  .why-content p {
    font-size: 0.9rem;
  }

  .why-arrow {
    display: none;
  }

  /* --- Stats --- */
  .stats-section {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item .stat-number {
    font-size: 1.8rem;
  }

  .stat-item .stat-label {
    font-size: 0.7rem;
  }

  /* --- FAQ --- */
  .faq-question {
    font-size: 0.95rem;
    padding: 18px 0;
  }

  .faq-answer-inner p {
    font-size: 0.9rem;
  }

  /* --- CTA --- */
  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }

  /* --- Contact --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  .btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
  }

  /* --- About page --- */
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mvv-card {
    padding: 28px 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-content p {
    font-size: 1rem;
  }

  /* --- Page Hero (About, Contact, Privacy, Terms) --- */
  .page-hero {
    min-height: 35vh;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 0 20px;
  }

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

  .footer-logo img {
    height: 80px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* --- Legal pages --- */
  .legal-content h2 {
    font-size: 1.2rem;
    margin-top: 36px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 0.95rem;
  }
}

/* ========== RESPONSIVE — SMALL MOBILE (max-width: 480px) ========== */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

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

  .stat-item .stat-number {
    font-size: 1.5rem;
  }

  .contact-form-wrap {
    padding: 20px 16px;
  }

  .nav-links {
    width: 100%;
  }

  .footer-logo img {
    height: 70px;
  }

  .benefit-card {
    padding: 20px 16px;
  }

  .section-title {
    font-size: 1.3rem;
  }
}
