/* ============================================================
   MANSORPUWMA LLC — styles.css
   ============================================================ */

/* === CSS RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === ROOT VARIABLES === */
:root {
  --primary:        #1565C0;
  --primary-light:  #1E88E5;
  --primary-lighter:#42A5F5;
  --primary-dark:   #0D47A1;
  --primary-glow:   rgba(21,101,192,.25);
  --primary-bg:     rgba(21,101,192,.07);

  --white:    #FFFFFF;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --dark:     #060E20;

  --success: #10B981;
  --error:   #EF4444;

  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08),0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.10),0 4px 12px rgba(0,0,0,.07);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.12),0 8px 20px rgba(0,0,0,.08);
  --shadow-blue: 0 8px 30px rgba(21,101,192,.30);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill:999px;

  --transition:      .3s ease;
  --transition-fast: .15s ease;
  --transition-slow: .5s ease;

  --section-pad: 100px 0;
  --container-max: 1240px;
}

/* === BASE TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--gray-900); }
h1 { font-size: clamp(2.5rem,5vw,4rem); }
h2 { font-size: clamp(1.875rem,3.5vw,2.75rem); }
h3 { font-size: clamp(1.125rem,2vw,1.375rem); }
p  { line-height: 1.75; color: var(--gray-500); }

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

.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary); background: var(--primary-bg);
  padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.section-tag::before { content:''; width:6px; height:6px; background:var(--primary); border-radius:50%; }

.section-title { margin-bottom: 18px; letter-spacing: -.025em; }
.section-title span { color: var(--primary); }
.section-desc { max-width: 600px; margin: 0 auto; font-size: 1.0625rem; color: var(--gray-500); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-pill);
  font-size: .9375rem; font-weight: 600; font-family: var(--font-body);
  transition: all var(--transition); cursor: pointer; white-space: nowrap; line-height: 1;
}
.btn-primary  { background: var(--primary); color: var(--white); box-shadow: var(--shadow-blue); }
.btn-primary:hover  { background: var(--primary-dark); box-shadow: 0 12px 40px rgba(21,101,192,.45); transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover  { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white    { background: var(--white); color: var(--primary); box-shadow: var(--shadow-md); }
.btn-white:hover    { background: var(--gray-50); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost    { background: rgba(255,255,255,.1); color: var(--white); border: 2px solid rgba(255,255,255,.3); }
.btn-ghost:hover    { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* === HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all var(--transition); padding: 22px 0;
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.header.scrolled .logo-text { color: var(--gray-900); }
.header.scrolled .nav-links a { color: var(--gray-700); }
.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active { color: var(--primary); }
.header.scrolled .nav-links a::after { background: var(--primary); }
.header.scrolled .hamburger span { background: var(--gray-700); }

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

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  color: var(--white); transition: color var(--transition); letter-spacing: -.025em;
}

.nav-links { display: flex; align-items: center; gap: 36px; margin-left: auto; }
.nav-links a {
  font-size: .9375rem; font-weight: 500; color: rgba(255,255,255,.88);
  transition: color var(--transition); position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--primary-lighter);
  transform: scaleX(0); transition: transform var(--transition); border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta { margin-left: 8px; flex-shrink: 0; padding: 10px 22px; font-size: .875rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 998; opacity: 0; transition: opacity var(--transition);
}
.nav-overlay.open { opacity: 1; }

/* === HERO === */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,14,32,.90) 0%, rgba(13,71,161,.65) 50%, rgba(6,14,32,.82) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; padding: 140px 0 80px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary-lighter); background: rgba(66,165,245,.15);
  border: 1px solid rgba(66,165,245,.3); padding: 6px 16px;
  border-radius: var(--radius-pill); margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.75rem,5.5vw,4.25rem); font-weight: 800; line-height: 1.08;
  color: var(--white); margin-bottom: 24px; letter-spacing: -.035em;
}
.hero-title span {
  background: linear-gradient(135deg, var(--primary-lighter), #90CAF9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
  font-size: 1.1875rem; color: rgba(255,255,255,.72); margin-bottom: 44px;
  max-width: 580px; line-height: 1.75;
}

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

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.45); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
}
.hero-scroll-arrow { animation: scrollBounce 2s infinite; }
@keyframes scrollBounce { 0%,100%{ transform:translateY(0);} 50%{transform:translateY(7px);} }

/* === PAGE HERO === */
.page-hero {
  position: relative; padding: 160px 0 80px;
  min-height: 360px; display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,14,32,.88) 0%, rgba(13,71,161,.60) 100%);
}
.page-hero-content { position: relative; z-index: 1; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: rgba(255,255,255,.55); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }
.breadcrumb-cur { color: rgba(255,255,255,.88); }

.page-hero-title { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; }
.page-hero-sub { margin-top: 12px; color: rgba(255,255,255,.68); font-size: 1.0625rem; max-width: 520px; line-height: 1.7; }

/* === STATS BAR === */
.stats-bar { background: var(--gray-900); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 16px 24px; position: relative; }
.stat-item:not(:last-child)::after { content:''; position:absolute; right:0; top:15%; height:70%; width:1px; background:rgba(255,255,255,.1); }
.stat-number { font-family: var(--font-display); font-size: clamp(2.5rem,4vw,3.5rem); font-weight: 800; color: var(--white); letter-spacing: -.04em; line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: .8125rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .1em; }

/* === SERVICE CARDS (HOME OVERVIEW) === */
.services-section { padding: var(--section-pad); background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1px solid var(--gray-200); transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg,var(--primary),var(--primary-lighter));
  transform: scaleX(0); transition: transform var(--transition); border-radius:3px 3px 0 0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; background: var(--primary-bg); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon svg [stroke] { stroke: var(--white); }
.service-card:hover .service-icon svg [fill]:not([fill="none"]) { fill: var(--white); }

.service-card h3 { font-size: 1.125rem; margin-bottom: 10px; color: var(--gray-900); }
.service-card > p { font-size: .9375rem; color: var(--gray-500); line-height: 1.7; }

/* === WHY CHOOSE US === */
.why-section { padding: var(--section-pad); background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.why-item { text-align: center; padding: 40px 28px; border-radius: var(--radius-lg); transition: all var(--transition); }
.why-item:hover { background: var(--gray-50); box-shadow: var(--shadow-md); }
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg,var(--primary-bg),rgba(66,165,245,.1));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; border: 2px solid rgba(21,101,192,.15);
}
.why-item h3 { font-size: 1.1875rem; margin-bottom: 14px; color: var(--gray-900); }
.why-item > p { font-size: .9375rem; color: var(--gray-500); line-height: 1.75; }

/* === PRICING === */
.pricing-section { padding: var(--section-pad); background: var(--gray-50); }
.pricing-section.dark { background: var(--gray-900); }
.pricing-section.dark .section-title { color: var(--white); }
.pricing-section.dark .section-desc { color: var(--gray-400); }

.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; align-items: start; }

.pricing-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1px solid var(--gray-200); position: relative; transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  background: linear-gradient(145deg,#0D47A1,#1565C0,#1976D2);
  border-color: transparent; box-shadow: var(--shadow-blue),var(--shadow-xl);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); box-shadow:0 24px 64px rgba(21,101,192,.45),var(--shadow-xl); }

.pricing-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  background: rgba(255,255,255,.2); color: var(--white); padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 18px;
}

.pricing-name {
  font-family: var(--font-display); font-size: .875rem; font-weight: 700; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,.75); }

.pricing-price { font-family: var(--font-display); font-size: 2.75rem; font-weight: 800; color: var(--gray-900); letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; }
.pricing-price sup { font-size: 1.25rem; font-weight: 600; vertical-align: super; line-height: 1; }
.pricing-price sub { font-size: .9375rem; font-weight: 400; color: var(--gray-500); letter-spacing: 0; }
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-card.featured .pricing-price sub { color: rgba(255,255,255,.65); }

.pricing-divider { height: 1px; background: var(--gray-200); margin: 22px 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.2); }

.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .8875rem; color: var(--gray-600); line-height: 1.5; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.85); }
.pricing-features li::before {
  content:''; width:18px; height:18px; flex-shrink:0; margin-top:1px;
  background-image:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%231565C0' fill-opacity='0.12'/%3E%3Cpath d='M5.25 9l2.5 2.5 5-6' stroke='%231565C0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size:contain; background-repeat:no-repeat;
}
.pricing-card.featured .pricing-features li::before {
  background-image:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='rgba(255,255,255,0.2)'/%3E%3Cpath d='M5.25 9l2.5 2.5 5-6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pricing-note { text-align: center; margin-top: 44px; font-size: .9375rem; color: var(--gray-500); }
.pricing-note strong { color: var(--gray-700); }
.pricing-section.dark .pricing-note { color: var(--gray-400); }
.pricing-section.dark .pricing-note strong { color: var(--gray-300); }

/* === TESTIMONIALS === */
.testimonials-section { padding: var(--section-pad); background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.testimonial-card {
  background: var(--gray-50); border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1px solid var(--gray-200); position: relative; transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--white); }

.testimonial-quote { position: absolute; top: 20px; right: 24px; opacity: .08; }

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testimonial-stars span { color: #F59E0B; font-size: 1rem; }

.testimonial-text { font-size: .9375rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 28px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--gray-200); }
.testimonial-name { font-weight: 700; font-size: .9375rem; color: var(--gray-900); margin-bottom: 2px; }
.testimonial-role { font-size: .8125rem; color: var(--gray-500); }

/* === CTA BANNER === */
.cta-section { padding: 100px 0; background: var(--dark); position: relative; overflow: hidden; }
.cta-section::before {
  content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:900px; height:450px;
  background:radial-gradient(ellipse,rgba(21,101,192,.35) 0%,transparent 68%);
  pointer-events:none;
}
.cta-content { text-align: center; position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-content h2 { color: var(--white); margin-bottom: 20px; letter-spacing: -.03em; }
.cta-content p { color: rgba(255,255,255,.62); font-size: 1.0625rem; margin-bottom: 44px; line-height: 1.75; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* === PROCESS STEPS === */
.process-section { padding: var(--section-pad); background: var(--gray-900); }
.process-section .section-title { color: var(--white); }
.process-section .section-desc { color: var(--gray-400); }
.process-section .section-title span { color: var(--primary-lighter); }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; }
.process-grid::before {
  content:''; position:absolute; top:35px; left:calc(12.5% + 20px); right:calc(12.5% + 20px);
  height:2px; background:linear-gradient(90deg,var(--primary),var(--primary-light),var(--primary)); opacity:.35;
}

.process-step { text-align: center; position: relative; }
.process-number {
  width: 70px; height: 70px;
  background: linear-gradient(135deg,var(--primary-dark),var(--primary-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--white); position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(21,101,192,.45);
}
.process-step h3 { color: var(--white); font-size: 1.125rem; margin-bottom: 12px; }
.process-step > p { color: var(--gray-400); font-size: .9rem; line-height: 1.7; }

/* === FAQ === */
.faq-section { padding: var(--section-pad); background: var(--gray-50); }
.faq-container { max-width: 820px; margin: 0 auto; }

.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: all var(--transition); }
.faq-item.open { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary),var(--shadow-md); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px; cursor: pointer; font-weight: 600; font-size: .9375rem;
  color: var(--gray-800); transition: color var(--transition); user-select: none;
}
.faq-item.open .faq-question { color: var(--primary); }

.faq-toggle {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--primary-bg);
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.faq-item.open .faq-toggle { background: var(--primary); transform: rotate(180deg); }
.faq-toggle svg path { stroke: var(--primary); transition: stroke var(--transition); }
.faq-item.open .faq-toggle svg path { stroke: var(--white); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 28px 24px; font-size: .9375rem; color: var(--gray-500); line-height: 1.8; }

/* === CONTACT === */
.contact-section { padding: var(--section-pad); background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }

.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px 44px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.form-title { font-size: 1.5rem; margin-bottom: 8px; }
.form-subtitle { color: var(--gray-500); font-size: .9375rem; margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 7px; }
.form-group label .req { color: var(--error); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  font-size: .9375rem; color: var(--gray-800); background: var(--white);
  transition: all var(--transition); outline: none; -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--error); box-shadow: 0 0 0 3px rgba(239,68,68,.15); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:44px; }

.form-submit { width: 100%; padding: 15px; font-size: 1rem; border-radius: var(--radius-md); justify-content: center; }

.form-success { text-align: center; padding: 60px 20px; }
.form-success svg { margin: 0 auto 24px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--gray-900); }

.contact-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; border: 1px solid var(--gray-200); box-shadow: var(--shadow-md); }
.contact-info-title { font-size: 1.1875rem; margin-bottom: 28px; color: var(--gray-900); }

.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; background: var(--primary-bg); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: 4px; }
.contact-info-value { font-size: .9375rem; font-weight: 600; color: var(--gray-800); line-height: 1.5; }

.map-placeholder {
  margin-top: 24px; background: var(--gray-100); border-radius: var(--radius-md);
  height: 200px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; color: var(--gray-400); font-size: .875rem;
  border: 2px dashed var(--gray-200);
}

.contact-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 80px; }
.contact-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; border: 1px solid var(--gray-200); transition: all var(--transition); }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.contact-card-icon { width: 64px; height: 64px; background: var(--primary-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.contact-card h3 { font-size: 1.0625rem; margin-bottom: 8px; color: var(--gray-900); }
.contact-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.6; }

/* === ABOUT — STORY === */
.story-section { padding: var(--section-pad); background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.story-image-wrap { border-radius: var(--radius-xl); overflow: hidden; position: relative; box-shadow: var(--shadow-xl); }
.story-image-wrap img { width: 100%; height: 520px; object-fit: cover; transition: transform .6s ease; }
.story-image-wrap:hover img { transform: scale(1.04); }
.story-image-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.story-image-badge .badge-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.story-image-badge .badge-label { font-size: .8125rem; font-weight: 600; color: var(--gray-600); line-height: 1.4; }

.story-tag { font-size: .8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; display: block; }
.story-title { font-size: clamp(1.75rem,3vw,2.5rem); margin-bottom: 20px; }
.story-text { color: var(--gray-500); line-height: 1.85; margin-bottom: 14px; font-size: 1rem; }

.story-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.story-highlight { display: flex; align-items: flex-start; gap: 12px; }
.story-highlight-icon { width: 40px; height: 40px; background: var(--primary-bg); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.story-highlight h4 { font-size: .9375rem; color: var(--gray-900); margin-bottom: 3px; }
.story-highlight p { font-size: .8125rem; color: var(--gray-500); line-height: 1.5; }

/* === ABOUT — MISSION/VISION === */
.mission-section { padding: var(--section-pad); background: var(--gray-50); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mission-card { border-radius: var(--radius-xl); padding: 52px 48px; }
.mission-card.plain { background: var(--white); border: 1px solid var(--gray-200); }
.mission-card.gradient { background: linear-gradient(145deg,#0A2E6B,#1565C0,#1E88E5); box-shadow: var(--shadow-blue),var(--shadow-xl); }

.mission-card-icon { width: 60px; height: 60px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.mission-card.plain .mission-card-icon { background: var(--primary-bg); }
.mission-card.gradient .mission-card-icon { background: rgba(255,255,255,.15); }

.mission-card-label { font-size: .8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.mission-card.plain .mission-card-label { color: var(--primary); }
.mission-card.gradient .mission-card-label { color: rgba(255,255,255,.68); }

.mission-card h3 { font-size: 1.625rem; margin-bottom: 16px; }
.mission-card.gradient h3 { color: var(--white); }
.mission-card p { line-height: 1.85; font-size: .9375rem; }
.mission-card.gradient p { color: rgba(255,255,255,.78); }

/* === ABOUT — VALUES === */
.values-section { padding: var(--section-pad); background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.value-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: 36px 26px; border: 1px solid var(--gray-100); transition: all var(--transition); text-align: center; }
.value-card:hover { background: var(--white); box-shadow: var(--shadow-lg); border-color: var(--gray-200); transform: translateY(-4px); }
.value-icon { width: 58px; height: 58px; background: var(--primary-bg); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: background var(--transition); }
.value-card:hover .value-icon { background: var(--primary); }
.value-card:hover .value-icon svg [stroke] { stroke: var(--white); }
.value-card h3 { font-size: 1.0625rem; margin-bottom: 12px; color: var(--gray-900); }
.value-card > p { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

/* === ABOUT — TEAM === */
.team-section { padding: var(--section-pad); background: var(--gray-50); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); transition: all var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.team-photo-wrap { overflow: hidden; }
.team-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; transition: transform .5s ease; }
.team-card:hover .team-photo { transform: scale(1.06); }
.team-card-body { padding: 24px 22px; }
.team-name { font-size: 1.0625rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.team-role { font-size: .8rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; display: block; }
.team-bio { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

/* === PARTNERS STRIP === */
.partners-section { padding: 72px 0; background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.partners-label { text-align: center; font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 40px; }
.partners-row { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.partner-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 800; color: var(--gray-300); letter-spacing: -.02em; transition: color var(--transition); cursor: default; }
.partner-name:hover { color: var(--primary); }

/* === SERVICES — DETAIL === */
.services-detail-section { padding: var(--section-pad); background: var(--gray-50); }
.services-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }

.service-detail-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px 40px; border: 1px solid var(--gray-200); transition: all var(--transition); }
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-detail-card h3 { font-size: 1.25rem; margin: 20px 0 14px; color: var(--gray-900); }
.service-detail-card > p { color: var(--gray-500); font-size: .9375rem; line-height: 1.8; margin-bottom: 24px; }

.service-feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-feature-list li { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--gray-600); }
.service-feature-list li::before { content:''; width:7px; height:7px; background:var(--primary); border-radius:50%; flex-shrink:0; }

/* === FOOTER === */
.footer { background: var(--gray-900); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .logo-text { color: var(--white); }
.footer-desc { margin-top: 16px; font-size: .9rem; color: var(--gray-400); line-height: 1.75; }

.footer-heading { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-300); margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: .9rem; color: var(--gray-400); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary-lighter); }

.footer-info { display: flex; flex-direction: column; gap: 11px; }
.footer-info li { font-size: .875rem; color: var(--gray-400); line-height: 1.6; }
.footer-info strong { color: var(--gray-300); font-weight: 600; }

.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: .875rem; color: var(--gray-500); }

/* === ANIMATIONS === */
.fade-in { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }
.stagger-5 { transition-delay: .5s; }
.stagger-6 { transition-delay: .6s; }

/* === LEGAL PAGES === */
.legal-wrap { background: var(--white); }
.legal-content { max-width: 820px; margin: 0 auto; padding: 80px 24px 100px; }
.legal-meta { background: var(--primary-bg); border-left: 4px solid var(--primary); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 16px 20px; margin-bottom: 48px; font-size: .875rem; color: var(--gray-600); }
.legal-content h2 { font-size: 1.4375rem; color: var(--gray-900); margin: 52px 0 16px; padding-bottom: 14px; border-bottom: 2px solid var(--primary-bg); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 1.0625rem; color: var(--gray-800); margin: 28px 0 10px; }
.legal-content p { color: var(--gray-600); line-height: 1.9; margin-bottom: 16px; font-size: .9375rem; }
.legal-content ul { margin: 10px 0 20px 24px; display: flex; flex-direction: column; gap: 8px; }
.legal-content ol { margin: 10px 0 20px 24px; display: flex; flex-direction: column; gap: 8px; }
.legal-content ul li { list-style: disc; color: var(--gray-600); font-size: .9375rem; line-height: 1.7; }
.legal-content ol li { list-style: decimal; color: var(--gray-600); font-size: .9375rem; line-height: 1.7; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .9rem; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-200); }
.legal-content th { background: var(--primary); color: var(--white); padding: 14px 18px; text-align: left; font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.legal-content td { padding: 14px 18px; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); vertical-align: top; line-height: 1.65; }
.legal-content tr:last-child td { border-bottom: none; }
.legal-content tr:nth-child(even) td { background: var(--gray-50); }
.legal-section-num { color: var(--primary); margin-right: 8px; }

/* === RESPONSIVE — 1024px === */
@media (max-width: 1024px) {
  :root { --section-pad: 80px 0; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .story-grid { gap: 48px; }
  .mission-card { padding: 40px 36px; }
}

/* === RESPONSIVE — 768px === */
@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .hamburger { display: flex; }
  .nav-overlay { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(320px,85vw); background: var(--white);
    flex-direction: column; align-items: flex-start; padding: 100px 40px 40px;
    gap: 24px; box-shadow: -10px 0 40px rgba(0,0,0,.18);
    transition: right var(--transition); z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--gray-700); font-size: 1.125rem; }
  .nav-links a:hover, .nav-links a.active { color: var(--primary); }
  .nav-links a::after { background: var(--primary); }
  .nav-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-image-wrap { order: -1; }
  .story-image-wrap img { height: 380px; }
  .mission-grid { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form-card { padding: 36px 28px; }
  .contact-info-card { padding: 32px 28px; }
}

/* === RESPONSIVE — 480px === */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: 2.25rem; }
  .story-highlights { grid-template-columns: 1fr; }
  .mission-card { padding: 36px 28px; }
  .contact-form-card { padding: 28px 20px; }
  .partners-row { gap: 32px; }
  .section-header { margin-bottom: 48px; }
}

/* === PAYMENT STRIP === */
.payment-strip {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 28px; flex-wrap: wrap; padding: 14px 24px;
  border-radius: var(--radius-md);
}
.pricing-section .payment-strip { background: rgba(0,0,0,.04); border: 1px solid var(--gray-200); }
.pricing-section.dark .payment-strip { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.ps-lock { flex-shrink: 0; }
.pricing-section .ps-lock { color: var(--success); }
.pricing-section.dark .ps-lock { color: #34D399; }
.ps-text { font-size: .8rem; white-space: nowrap; }
.pricing-section .ps-text { color: var(--gray-500); }
.pricing-section.dark .ps-text { color: var(--gray-400); }
.ps-logos { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.psb {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 4px 11px; height: 28px; border-radius: 5px;
  background: var(--white); border: 1px solid var(--gray-200);
  font-weight: 800; font-size: .7rem; white-space: nowrap;
}
.psb-airwallex { color: #1A1F36; letter-spacing: .04em; text-transform: lowercase; }
.psb-stripe { color: #635BFF; font-style: italic; font-size: .875rem; letter-spacing: -.02em; }
.psb-visa { color: #1A1F8C; font-style: italic; font-size: .8rem; letter-spacing: .05em; }
.psb-mc { padding: 3px 6px; line-height: 0; }
.ps-ssl { font-size: .75rem; font-weight: 600; white-space: nowrap; }
.pricing-section .ps-ssl { color: var(--success); }
.pricing-section.dark .ps-ssl { color: #34D399; }
@media (max-width: 600px) {
  .payment-strip { flex-direction: column; gap: 8px; }
}
