/* ==========================================================================
   IFIXED TECHNOLOGY — Site Stylesheet
   ========================================================================== */

:root {
  --navy-900: #150a30;
  --navy-800: #1c0f42;
  --navy-700: #261558;
  --navy-600: #33206f;
  --red: #ff3d5a;
  --orange: #ff8a3d;
  --gradient: linear-gradient(90deg, var(--red), var(--orange));
  --white: #ffffff;
  --ink: #1b0f3f;
  --muted: #6b6482;
  --muted-light: #cfc9e6;
  --bg-light: #f6f5fb;
  --border-light: #e7e4f2;
  --shadow: 0 20px 45px -20px rgba(21, 10, 48, 0.35);
  --radius: 14px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ink);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.section {
  padding: 88px 0;
}

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

.section-dark {
  background: var(--navy-900);
  background-image: radial-gradient(circle at 15% 20%, rgba(255, 61, 90, 0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255, 138, 61, 0.16), transparent 45%);
  color: var(--white);
}

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

.section-dark p {
  color: var(--muted-light);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head.align-left {
  margin: 0 0 48px;
  text-align: left;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 12px 30px -10px rgba(255, 61, 90, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(255, 61, 90, 0.65);
}

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

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

.btn-outline {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-800);
}

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

.btn-block {
  width: 100%;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 10, 48, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.brand img {
  height: 46px;
  width: auto;
}

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

.main-nav a {
  color: var(--muted-light);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 16px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.main-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

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

.header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 14.5px;
}

.header-call svg {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 96px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: 46px;
  margin-bottom: 20px;
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  color: var(--white);
}

.hero-stats div span {
  font-size: 13.5px;
  color: var(--muted-light);
}

.hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-700);
  padding: 3px;
  background-image: var(--gradient);
}

.hero-visual-inner {
  background: var(--navy-800);
  border-radius: 18px;
  padding: 40px;
}

.hero-visual-inner img {
  width: 100%;
  border-radius: 12px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 18px;
}

.hero-badge svg {
  flex-shrink: 0;
  color: var(--orange);
}

.hero-badge strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.hero-badge span {
  font-size: 12.5px;
  color: var(--muted-light);
}

/* ==========================================================================
   Cards / Grids
   ========================================================================== */

.grid {
  display: grid;
  gap: 28px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: var(--white);
  margin-bottom: 20px;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14.5px;
  margin-bottom: 0;
}

.card ul {
  margin-top: 14px;
}

.card ul li {
  font-size: 14.5px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

.card-dark {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-dark h3 {
  color: var(--white);
}

.card-dark p {
  color: var(--muted-light);
}

/* Why choose us */
.feature-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-row .card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  margin-bottom: 0;
}

.feature-row h4 {
  font-size: 16.5px;
  margin-bottom: 6px;
}

.feature-row p {
  font-size: 14.5px;
  margin-bottom: 0;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.split-media {
  border-radius: 20px;
  background: var(--navy-800);
  padding: 4px;
  background-image: var(--gradient);
}

.split-media-inner {
  background: var(--navy-900);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
}

.split-media-inner img {
  margin: 0 auto 18px;
  max-width: 220px;
}

.split-media-inner h4 {
  color: var(--white);
  margin-bottom: 4px;
}

.split-media-inner span {
  color: var(--orange);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Founder card */
.founder-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 30px;
}

.founder-avatar {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.founder-card h4 {
  margin-bottom: 2px;
  font-size: 16.5px;
}

.founder-card span {
  font-size: 13.5px;
  color: var(--muted);
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-strip strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}

.stats-strip span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* CTA band */
.cta-band {
  border-radius: 22px;
  padding: 56px 48px;
  background: var(--navy-800);
  background-image: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 28px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.cta-band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
}

.cta-band .btn-primary {
  background: var(--navy-900);
  box-shadow: none;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

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

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.contact-info-item .card-icon {
  margin-bottom: 0;
}

.contact-info-item h4 {
  font-size: 15.5px;
  margin-bottom: 4px;
  color: var(--white);
}

.contact-info-item p,
.contact-info-item a {
  font-size: 14.5px;
  margin-bottom: 0;
  color: var(--muted-light);
}

.contact-info-item a:hover {
  color: var(--white);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  color: var(--white);
}

.social-row a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

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

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  font-family: inherit;
  font-size: 14.5px;
  background: var(--bg-light);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}

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

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  margin-bottom: 0;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.form-status.success {
  display: block;
  background: #e8f8ee;
  color: #1b7a43;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin-top: 24px;
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */

.page-header {
  padding: 64px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 38px;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted-light);
  font-weight: 600;
}

.breadcrumb span {
  color: var(--orange);
}

/* ==========================================================================
   Timeline / process
   ========================================================================== */

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

.process-step {
  position: relative;
  padding: 28px 22px;
  border-radius: var(--radius);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
}

.process-step .step-num {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  display: block;
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Values grid (about page) */
.value-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  text-align: center;
}

.value-card .card-icon {
  margin: 0 auto 18px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-900);
  color: var(--muted-light);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted-light);
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--muted-light);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--muted-light);
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: var(--muted-light);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom .reg-no {
  color: var(--muted-light);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.6);
  z-index: 90;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split {
    text-align: left;
  }

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

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

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

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

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

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 71px;
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav a {
    padding: 13px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .header-call span {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 32px;
  }

  .section {
    padding: 64px 0;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .process-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }

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

  .founder-card {
    flex-direction: column;
    text-align: center;
  }
}
