:root {
  --primary: #0d6b4d;
  --primary-dark: #084935;
  --primary-soft: #e7f4ef;
  --gold: #c9a24b;
  --ink: #17211d;
  --muted: #66736d;
  --surface: #ffffff;
  --surface-soft: #f5f8f6;
  --border: #dfe8e3;
  --danger: #d45959;
  --shadow: 0 18px 60px rgba(15, 63, 46, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.90);
  border-bottom: 1px solid rgba(223,232,227,.9);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(13,107,77,.12);
  border: 1px solid rgba(13,107,77,.08);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer-logo {
  width: 60px;
  height: 60px;
}
.brand strong { display: block; letter-spacing: .08em; font-size: 17px; line-height: 1.15; }
.brand small { display: block; font-size: 10px; color: var(--muted); letter-spacing: .05em; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.main-nav a { color: #3b4943; transition: .2s; }
.main-nav a:hover { color: var(--primary); }
.main-nav .nav-cta {
  color: #fff; background: var(--primary); padding: 11px 18px; border-radius: 10px;
}
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.hero {
  position: relative; overflow: hidden; padding: 92px 0 86px;
  background:
    radial-gradient(circle at 20% 10%, rgba(201,162,75,.14), transparent 28%),
    linear-gradient(180deg, #f8fbf9 0%, #fff 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--primary);
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em;
}
.eyebrow::before { content:""; width: 28px; height: 2px; background: var(--gold); }
.hero h1, .section h2 {
  font-family: "Playfair Display", serif; line-height: 1.12; margin: 18px 0 18px; color: #13231d;
}
.hero h1 { font-size: clamp(44px, 6vw, 70px); max-width: 740px; }
.hero-copy > p { font-size: 18px; color: var(--muted); max-width: 670px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.btn {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 50px; padding: 0 22px; border-radius: 11px; border: 1px solid transparent;
  font-weight: 700; font-size: 14px; cursor: pointer; transition: .25s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 25px rgba(13,107,77,.22); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary, .btn-outline { background: #fff; border-color: var(--border); color: var(--ink); }
.btn-secondary:hover, .btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.trust-row { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { font-size: 22px; color: var(--primary-dark); }
.trust-row span { font-size: 12px; color: var(--muted); }

.hero-visual { position: relative; }
.app-shell {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: 25px; padding: 22px; box-shadow: var(--shadow);
}
.app-shell::before {
  content:""; position:absolute; inset: 12px -16px -16px 12px; border-radius: 25px;
  background: rgba(13,107,77,.07); z-index:-1;
}
.app-topbar { display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid var(--border); padding-bottom:16px; }
.app-topbar small { display:block; color:var(--muted); font-size:11px; }
.app-topbar strong { display:block; font-size:16px; }
.status-pill { font-size:11px; color:var(--primary); background:var(--primary-soft); padding:7px 10px; border-radius:20px; }
.status-pill i { display:inline-block; width:7px; height:7px; background:#28a66f; border-radius:50%; margin-right:5px; }
.stats-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:10px; margin-top:14px; }
.mini-card { background:var(--surface-soft); border-radius:13px; padding:13px; }
.mini-card span,.mini-card small { display:block; color:var(--muted); font-size:9px; }
.mini-card strong { display:block; font-size:19px; margin:3px 0; }
.alert-card { background:#fff1f1; }
.alert-card strong { color:var(--danger); }
.map-card { border:1px solid var(--border); border-radius:15px; margin-top:12px; overflow:hidden; }
.map-head { display:flex; justify-content:space-between; padding:11px 13px; font-size:11px; }
.map-head span { color:var(--muted); }
.map-surface {
  height:195px; position:relative; overflow:hidden;
  background:
    linear-gradient(36deg, transparent 49%, rgba(13,107,77,.08) 50%, transparent 51%),
    linear-gradient(-32deg, transparent 49%, rgba(201,162,75,.08) 50%, transparent 51%),
    #eef4f0;
}
.road { position:absolute; display:block; height:6px; border-top:2px solid #fff; border-bottom:2px solid #fff; background:#cddbd3; transform-origin:left; }
.r1 { width:85%; top:60%; left:4%; transform:rotate(-22deg); }
.r2 { width:75%; top:26%; left:17%; transform:rotate(31deg); }
.r3 { width:57%; top:76%; left:32%; transform:rotate(-58deg); }
.map-label { position:absolute; font-size:9px; font-weight:700; color:#67766f; }
.makkah{left:13%;top:63%}.mina{left:60%;top:34%}.arafat{right:8%;bottom:13%}
.pin { width:14px; height:14px; border:4px solid #fff; background:var(--primary); position:absolute; border-radius:50% 50% 50% 0; transform:rotate(-45deg); box-shadow:0 3px 8px rgba(0,0,0,.18); }
.pin-1{left:22%;top:50%}.pin-2{left:56%;top:30%}.pin-3{right:19%;bottom:26%}.pin-4{left:46%;bottom:14%}
.activity-list { margin-top:11px; }
.activity-list > div { display:grid; grid-template-columns:30px 1fr auto; align-items:center; gap:9px; padding:9px 2px; border-bottom:1px solid #edf1ef; }
.activity-list > div:last-child { border-bottom:0; }
.activity-icon { width:26px;height:26px;border-radius:8px;display:grid;place-items:center;font-size:11px;font-weight:800; }
.activity-icon.safe{background:#e9f7ef;color:#168759}.activity-icon.health{background:#fff0f0;color:#d45b5b}.activity-icon.route{background:#eef4ff;color:#486fbd}
.activity-list p { margin:0; line-height:1.25; }
.activity-list p strong { display:block; font-size:10px; }
.activity-list p small, .activity-list time { font-size:8px;color:var(--muted); }

.partner-strip { border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:#fff; }
.partner-inner { min-height:94px; display:flex; align-items:center; gap:35px; }
.partner-inner > span { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:.12em; }
.partner-list { display:flex; align-items:center; justify-content:space-between; gap:32px; flex:1; flex-wrap:wrap; }
.partner-list strong { color:#728079; font-size:13px; }

.section { padding:100px 0; }
.section-heading { max-width:680px; margin-bottom:48px; }
.section-heading.centered { text-align:center; margin:0 auto 48px; }
.section-heading.centered .eyebrow { justify-content:center; }
.section h2 { font-size:clamp(35px, 4vw, 52px); }
.section-heading p, .dashboard-copy > p, .wearable-grid > div > p, .security-grid > div > p, .contact-copy > p { color:var(--muted); font-size:16px; }

.feature-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:18px; }
.feature-card { padding:28px 23px; border:1px solid var(--border); border-radius:17px; background:#fff; transition:.25s; }
.feature-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); border-color:#bed8cb; }
.icon-box { width:45px;height:45px;display:grid;place-items:center;border-radius:12px;background:var(--primary-soft);color:var(--primary);font-size:19px;font-weight:800;margin-bottom:20px; }
.feature-card h3 { font-size:17px; margin:0 0 10px; }
.feature-card p { font-size:13px; color:var(--muted); margin:0; }

.workflow-section { background:var(--surface-soft); }
.timeline { display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.timeline-item { background:#fff; border:1px solid var(--border); border-radius:17px; padding:24px; display:flex; gap:17px; }
.step { flex:0 0 43px; height:43px; display:grid; place-items:center; background:var(--primary); color:#fff; border-radius:12px; font-weight:800; font-size:12px; }
.timeline-item h3 { margin:2px 0 8px; font-size:17px; }
.timeline-item p { margin:0; color:var(--muted); font-size:13px; }


.dashboard-section {
  overflow: hidden;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: #3f4e47;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.slider-dashboard {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dashboard-slider {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: #eef3f0;
}

.dashboard-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.dashboard-slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: fadeIn .45s ease;
}

.dashboard-slide.active {
  display: block;
}

.dashboard-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 25, 43, .78);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: .2s ease;
}

.slider-arrow:hover {
  background: rgba(13, 25, 43, .94);
}

.slider-arrow.prev {
  left: 16px;
}

.slider-arrow.next {
  right: 16px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slider-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.6);
  cursor: pointer;
  transition: .2s ease;
}

.slider-dots .dot.active {
  background: #ffffff;
  transform: scale(1.18);
  box-shadow: 0 0 0 3px rgba(13,107,77,.18);
}

@keyframes fadeIn {
  from {
    opacity: .35;
  }
  to {
    opacity: 1;
  }
}


.wearable-section { background:linear-gradient(135deg,#f7faf8,#edf6f1); }
.wearable-grid { display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:center; }
.watch-visual { position:relative; width:320px;height:500px;margin:auto;display:flex;flex-direction:column;align-items:center;justify-content:center; }
.watch-strap { width:120px;height:145px;background:linear-gradient(90deg,#15392c,#285b47,#15392c); }
.watch-strap.top{border-radius:28px 28px 10px 10px}.watch-strap.bottom{border-radius:10px 10px 28px 28px}
.watch-face { z-index:2;width:210px;height:235px;border-radius:46px;background:linear-gradient(145deg,#10251d,#091812);border:8px solid #294f40;box-shadow:0 22px 60px rgba(12,57,41,.28);color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center; }
.watch-face small{letter-spacing:.18em;color:#8fd0b4}.watch-time{font-size:43px;font-weight:800;line-height:1.1}.heart-line{color:#ff8282;margin-top:13px;font-size:13px}.watch-status{margin-top:18px;font-size:10px;color:#bcd0c7}.watch-status span{display:inline-block;width:7px;height:7px;border-radius:50%;background:#4fdb9e;margin-right:5px}
.sensor { position:absolute;background:#fff;border:1px solid var(--border);box-shadow:0 10px 25px rgba(0,0,0,.08);border-radius:20px;padding:8px 14px;color:var(--primary);font-size:11px;font-weight:700; }
.sensor-one{left:0;top:28%}.sensor-two{right:-8px;top:48%}.sensor-three{left:8px;bottom:22%}
.wearable-points { display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:30px; }
.wearable-points div { padding:18px;border-left:3px solid var(--gold);background:rgba(255,255,255,.72); }
.wearable-points strong,.wearable-points span{display:block}.wearable-points span{font-size:12px;color:var(--muted);margin-top:4px}

.app-section { background:var(--primary-dark); color:#fff; }
.section-heading.light h2,.section-heading.light p{color:#fff}.section-heading.light .eyebrow{color:#b9e0cf}
.app-cards { display:grid;grid-template-columns:repeat(4,1fr);gap:18px; }
.app-card { border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.06);border-radius:18px;padding:28px; }
.phone-icon { width:44px;height:44px;border-radius:12px;background:var(--gold);color:#19231f;display:grid;place-items:center;font-weight:800;margin-bottom:20px; }
.app-card h3{margin:0 0 10px}.app-card p{margin:0;color:#c3d4cc;font-size:13px}

.pricing-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:stretch; }
.price-card { position:relative;border:1px solid var(--border);border-radius:19px;padding:32px;background:#fff; }
.price-card.featured { border:2px solid var(--primary);box-shadow:var(--shadow);transform:translateY(-8px); }
.plan-label { color:var(--primary);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.12em; }
.price-card h3{font-size:23px;margin:10px 0 7px}.price-card > p{color:var(--muted);font-size:13px;min-height:46px}
.price-card ul{list-style:none;padding:0;margin:24px 0}.price-card li{padding:9px 0 9px 24px;border-bottom:1px solid #edf1ef;font-size:13px;position:relative}.price-card li::before{content:"✓";position:absolute;left:0;color:var(--primary);font-weight:800}
.recommended { position:absolute;right:18px;top:18px;background:var(--primary-soft);color:var(--primary);padding:6px 9px;border-radius:16px;font-size:9px;font-weight:800 }

.security-section { background:var(--surface-soft); }
.security-grid { display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;align-items:start; }
.security-cards { display:grid;grid-template-columns:1fr 1fr;gap:16px; }
.security-cards div { background:#fff;border:1px solid var(--border);border-radius:16px;padding:23px; }
.security-cards span { color:var(--gold);font-weight:800;font-size:11px; }
.security-cards strong { display:block;margin:8px 0;font-size:16px; }
.security-cards p { margin:0;color:var(--muted);font-size:12px; }

.contact-section { background:linear-gradient(135deg,#eef7f2,#fff8e9); }
.contact-grid { display:grid;grid-template-columns:.85fr 1.15fr;gap:65px;align-items:start; }
.contact-details { margin-top:30px; }
.contact-details div { border-bottom:1px solid #d9e4de;padding:14px 0; }
.contact-details span,.contact-details strong{display:block}.contact-details span{font-size:10px;color:var(--muted);text-transform:uppercase;letter-spacing:.1em}.contact-details strong{font-size:13px;margin-top:4px}
.contact-form { background:#fff;border:1px solid var(--border);border-radius:20px;padding:28px;box-shadow:var(--shadow); }
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:15px; }
.contact-form label { display:block;font-size:11px;font-weight:700;color:#435149;margin-bottom:15px; }
.contact-form input,.contact-form select,.contact-form textarea { width:100%;margin-top:7px;border:1px solid var(--border);border-radius:10px;padding:13px;background:#fbfcfb;outline:none; }
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(13,107,77,.09)}
.submit-btn{width:100%}.form-message{text-align:center;font-size:12px;color:var(--primary);margin:12px 0 0}

.site-footer { background:#0d1d17;color:#d8e4de;padding:65px 0 20px; }
.footer-grid { display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px; }
.footer-brand small{color:#98aaa2}
.footer-grid p{color:#98aaa2;font-size:13px;max-width:310px}.footer-grid h4{color:#fff;margin:0 0 15px;font-size:13px}.footer-grid > div > a:not(.brand){display:block;color:#98aaa2;font-size:12px;margin:9px 0}
.footer-bottom { border-top:1px solid rgba(255,255,255,.1);margin-top:45px;padding-top:18px;display:flex;justify-content:space-between;color:#71837b;font-size:10px; }

@media (max-width: 1000px) {
  .feature-grid,.app-cards{grid-template-columns:repeat(2,1fr)}
  .timeline{grid-template-columns:repeat(2,1fr)}
  .dashboard-grid,.wearable-grid,.security-grid,.contact-grid{grid-template-columns:1fr;gap:45px}
  .dashboard-copy{max-width:700px}
  .security-grid > div:first-child{max-width:650px}
}

@media (max-width: 820px) {
  .menu-toggle{display:block}
  .main-nav{
    position:absolute;top:78px;left:20px;right:20px;display:none;flex-direction:column;align-items:stretch;
    background:#fff;border:1px solid var(--border);border-radius:16px;padding:18px;box-shadow:var(--shadow);
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:8px 5px}
  .main-nav .nav-cta{text-align:center}
  .hero-grid{grid-template-columns:1fr}
  .hero-copy{text-align:center}
  .hero-copy .eyebrow{justify-content:center}
  .hero-copy > p{margin-left:auto;margin-right:auto}
  .hero-actions,.trust-row{justify-content:center}
  .partner-inner{flex-direction:column;align-items:flex-start;padding:24px 0}
  .partner-list{justify-content:flex-start}
  .pricing-grid{grid-template-columns:1fr}
  .price-card.featured{transform:none}
  .footer-grid{grid-template-columns:1fr 1fr}
}

@media (max-width: 600px) {
  .container{width:min(100% - 24px,1180px)}
  .hero{padding:65px 0}
  .hero h1{font-size:42px}
  .section{padding:75px 0}
  .section h2{font-size:36px}
  .feature-grid,.timeline,.app-cards,.security-cards,.wearable-points,.form-row{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:1fr}
  .mini-card{display:flex;align-items:center;justify-content:space-between;gap:7px}
  .mini-card span,.mini-card small,.mini-card strong{display:inline}
  .dashboard-preview{grid-template-columns:49px 1fr;min-height:auto}
  .preview-main{padding:14px}
  .preview-cards{grid-template-columns:1fr}
  .bar-chart{height:120px;gap:6px}
  .watch-visual{transform:scale(.82);margin-top:-40px;margin-bottom:-40px}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:8px}
}


.download-app-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 25%, rgba(201,162,75,.14), transparent 26%),
    linear-gradient(135deg, #f4faf7 0%, #ffffff 100%);
}

.download-app-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -120px;
  top: -120px;
  background: rgba(13,107,77,.06);
}

.download-app-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 80px;
  align-items: center;
}

.download-app-copy > p {
  color: var(--muted);
  font-size: 15px;
  max-width: 610px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.store-button {
  min-width: 190px;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #101413;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  transition: .25s ease;
}

.store-button:hover {
  transform: translateY(-3px);
  background: #000000;
}

.store-icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  flex: 0 0 33px;
  font-size: 20px;
  color: #ffffff;
}

.play-icon {
  border-radius: 9px;
  background: linear-gradient(135deg, #3ac47d, #2d8cff);
  font-size: 14px;
}

.apple-icon {
  font-size: 0;
  position: relative;
}

.apple-icon::before {
  content: "";
  font-family: Arial, sans-serif;
  font-size: 31px;
  line-height: 1;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-text small {
  font-size: 9px;
  letter-spacing: .06em;
  opacity: .82;
}

.store-text strong {
  font-size: 20px;
  margin-top: 4px;
}

.download-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.download-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.download-note span::before {
  content: "✓";
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
}

.download-app-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.phone-showcase {
  width: min(360px, 76vw);
  border-radius: 46px;
  overflow: hidden;
  background: #1d342a;
  border: 10px solid #14251e;
  box-shadow: 0 30px 80px rgba(12,57,41,.24);
}

.phone-showcase img {
  width: 100%;
  height: auto;
  display: block;
}

.app-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 9px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
}

.badge-one {
  left: 4%;
  top: 18%;
}

.badge-two {
  right: 1%;
  top: 47%;
}

.badge-three {
  left: 7%;
  bottom: 15%;
}

@media (max-width: 1000px) {
  .download-app-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .download-app-copy {
    max-width: 720px;
  }
}

@media (max-width: 600px) {
  .store-buttons {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .download-app-visual {
    min-height: 520px;
  }

  .phone-showcase {
    width: min(310px, 82vw);
    border-radius: 38px;
  }

  .app-badge {
    font-size: 10px;
    padding: 8px 11px;
  }

  .badge-one {
    left: 0;
    top: 12%;
  }

  .badge-two {
    right: 0;
    top: 44%;
  }

  .badge-three {
    left: 0;
    bottom: 10%;
  }
}
.apple-icon svg{width:30px;height:30px;display:block;color:#fff}.apple-icon::before{display:none!important}



/* --- Workflow section enhanced with screenshots --- */
.workflow-section {
  background: linear-gradient(180deg, #f6faf7 0%, #ffffff 100%);
}

.workflow-section .section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.workflow-content {
  display: grid;
  grid-template-columns: 1.46fr 0.54fr;
  gap: 28px;
  align-items: start;
}

.workflow-section .timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.workflow-section .timeline-item {
  min-height: 176px;
  padding: 22px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(12, 57, 41, .05);
}

.workflow-section .timeline-item h3 {
  margin: 2px 0 10px;
  font-size: 17px;
  line-height: 1.35;
}

.workflow-section .timeline-item p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.workflow-section .step {
  width: 36px;
  height: 36px;
  font-size: 13px;
  border-radius: 13px;
}

.workflow-visual {
  position: sticky;
  top: 96px;
}

.workflow-slider {
  position: relative;
  max-width: 290px;
  margin-left: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 14px 14px 10px;
  box-shadow: 0 16px 38px rgba(12, 57, 41, .10);
}

.workflow-visual-head {
  padding: 0 2px 10px;
}

.workflow-visual-head span,
.workflow-visual-head strong {
  display: block;
}

.workflow-visual-head span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 5px;
}

.workflow-visual-head strong {
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
}

.workflow-slides {
  position: relative;
}

.workflow-slide {
  display: none;
  animation: fadeIn .45s ease;
}

.workflow-slide.active {
  display: block;
}

.workflow-slide img {
  width: 100%;
  max-width: 155px;
  display: block;
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(7, 31, 24, .14);
}

.workflow-caption {
  margin-top: 8px;
  padding: 10px 4px 4px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.workflow-caption strong,
.workflow-caption span {
  display: block;
}

.workflow-caption strong {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}

.workflow-caption span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.workflow-arrow {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 39, 32, .86);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
  z-index: 2;
}

.workflow-arrow:hover { background: rgba(22, 39, 32, .98); }
.workflow-arrow.prev { left: -8px; }
.workflow-arrow.next { right: -8px; }

.workflow-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.workflow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #c8d5cf;
  cursor: pointer;
}

.workflow-dot.active {
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,107,77,.14);
}

@media (max-width: 1180px) {
  .workflow-content {
    grid-template-columns: 1fr;
  }
  .workflow-visual {
    position: static;
  }
  .workflow-slider {
    max-width: 320px;
    margin: 6px auto 0;
  }
}

@media (max-width: 760px) {
  .workflow-section .timeline {
    grid-template-columns: 1fr;
  }
  .workflow-section .timeline-item {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .workflow-slider {
    max-width: 100%;
    padding: 14px 14px 12px;
  }
  .workflow-slide img {
    max-width: 70%;
    border-radius: 22px;
  }
  .workflow-arrow {
    width: 38px;
    height: 38px;
    font-size: 22px;
    top: 46%;
  }
  .workflow-arrow.prev { left: 6px; }
  .workflow-arrow.next { right: 6px; }
}

/* --- Download app section upgraded --- */
.animated-download-visual {
  min-height: 470px;
  display: grid;
  place-items: center;
}
.app-hero-showcase {
  width: min(100%, 560px);
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
  border: 1px solid rgba(13,107,77,.08);
  box-shadow: 0 28px 70px rgba(12,57,41,.18);
  animation: appFloat 5.5s ease-in-out infinite;
}
.app-hero-showcase img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes appFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
.animated-download-visual .app-badge {
  animation: badgePulse 4s ease-in-out infinite;
}
.animated-download-visual .badge-two { animation-delay: .8s; }
.animated-download-visual .badge-three { animation-delay: 1.6s; }
@keyframes badgePulse {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-6px) scale(1.03); }
}
.download-app-visual .badge-one { left: -2%; top: 16%; }
.download-app-visual .badge-two { right: -2%; top: 44%; }
.download-app-visual .badge-three { left: 6%; bottom: 8%; }

@media (max-width: 1100px) {
  .workflow-content { grid-template-columns: 1fr; }
  .workflow-visual { position: static; }
}
@media (max-width: 600px) {
  .workflow-slide img { max-width: 100%; border-radius: 24px; }
  .workflow-arrow { width: 38px; height: 38px; font-size: 22px; }
  .animated-download-visual { min-height: 380px; }
  .app-hero-showcase { width: 100%; padding: 12px; }
  .download-app-visual .badge-one { left: 0; top: 8%; }
  .download-app-visual .badge-two { right: 0; top: 44%; }
  .download-app-visual .badge-three { left: 4%; bottom: 2%; }
}


/* Hero visual replaced with uploaded app showcase */
.hero-image-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}


/* --- Download app section image replacement and stronger animation --- */
.app-hero-showcase {
  width: min(100%, 420px);
  padding: 18px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
  border: 1px solid rgba(13,107,77,.08);
  box-shadow: 0 24px 65px rgba(12,57,41,.16);
  position: relative;
  overflow: visible;
}
.app-hero-showcase::before {
  content: "";
  position: absolute;
  inset: auto 15% -16px 15%;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(20,30,25,.18) 0%, rgba(20,30,25,0) 70%);
  filter: blur(8px);
  z-index: 0;
  animation: shadowPulse 4.8s ease-in-out infinite;
}
.app-hero-showcase img {
  width: min(100%, 300px);
  display: block;
  border-radius: 32px;
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 40px rgba(14, 56, 42, .16);
  animation: appScreenFloat 5.2s ease-in-out infinite;
}
@keyframes appScreenFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  25% { transform: translateY(-8px) scale(1.01); }
  50% { transform: translateY(-14px) scale(1.02); }
  75% { transform: translateY(-8px) scale(1.01); }
}
@keyframes shadowPulse {
  0%, 100% { opacity: .5; transform: scaleX(1); }
  50% { opacity: .28; transform: scaleX(.9); }
}
.download-app-visual {
  min-height: 500px;
}
.animated-download-visual .app-badge {
  animation: badgeBob 4s ease-in-out infinite;
}
.animated-download-visual .badge-one { left: -5%; top: 18%; }
.animated-download-visual .badge-two { right: -6%; top: 44%; }
.animated-download-visual .badge-three { left: 4%; bottom: 10%; }
@keyframes badgeBob {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 900px) {
  .app-hero-showcase { width: min(100%, 340px); }
  .app-hero-showcase img { width: min(100%, 240px); }
}
@media (max-width: 600px) {
  .download-app-visual { min-height: 440px; }
  .app-hero-showcase { width: min(100%, 290px); padding: 14px; }
  .app-hero-showcase img { width: min(100%, 210px); border-radius: 26px; }
  .animated-download-visual .badge-one { left: 0; top: 10%; }
  .animated-download-visual .badge-two { right: 0; top: 48%; }
  .animated-download-visual .badge-three { left: 0; bottom: 6%; }
}
