:root{
  --green:#0f7a45;
  --green-dark:#0b5c34;
  --green-light:#eaf7ef;
  --red:#ea4335;
  --blue:#4285f4;
  --yellow:#fbbc05;
  --ink:#10151a;
  --gray:#5b6570;
  --line:#e7ebe8;
  --bg:#ffffff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  overflow-x:hidden;
}

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

svg{
  fill:currentColor;
  flex-shrink:0;
}

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

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--green);
  font-size:13px;
  font-weight:800;
  letter-spacing:1.5px;
  margin-bottom:16px;
}

.eyebrow.light{
  color:#c9f2db;
}

/* REVEAL ANIMATION */

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.in-view{
  opacity:1;
  transform:none;
}

/* HEADER */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:84px;
  padding:0 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  z-index:99;
}

.logo{
  font-size:19px;
  font-weight:800;
  letter-spacing:1px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--ink);
}

.logo svg{
  color:var(--green);
}

nav{
  display:flex;
  gap:32px;
}

nav a{
  color:var(--gray);
  font-size:15px;
  font-weight:600;
  transition:.25s;
}

nav a:hover{
  color:var(--green);
}

.header-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--green);
  color:#fff;
  padding:12px 20px;
  border-radius:10px;
  font-weight:700;
  font-size:14px;
  transition:.25s;
}

.header-btn:hover{
  background:var(--green-dark);
}

/* WHATSAPP FLOAT */

.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 24px rgba(37,211,102,.4);
  z-index:98;
  animation:pulse 2.4s ease-in-out infinite;
}

@keyframes pulse{
  0%,100%{box-shadow:0 8px 24px rgba(37,211,102,.4);}
  50%{box-shadow:0 8px 30px rgba(37,211,102,.65);}
}

/* HERO */

.hero{
  min-height:100vh;
  padding:150px 48px 80px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:40px;
  background:radial-gradient(circle at 85% 15%, var(--green-light) 0%, transparent 45%);
}

.hero h1{
  font-size:56px;
  line-height:1.12;
  letter-spacing:-1.5px;
  font-weight:800;
  margin-bottom:22px;
}

.hero h1 span{
  color:var(--green);
}

.hero-content > p{
  font-size:18px;
  line-height:1.6;
  color:var(--gray);
  max-width:520px;
  margin-bottom:32px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.hero-buttons.center{
  justify-content:center;
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--green);
  color:#fff;
  padding:16px 26px;
  border-radius:12px;
  font-weight:800;
  font-size:15px;
  transition:.25s;
}

.btn-primary:hover{
  background:var(--green-dark);
  transform:translateY(-2px);
}

.btn-primary.light{
  background:#fff;
  color:var(--green-dark);
}

.btn-primary.light:hover{
  background:#eafff2;
}

.btn-secondary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:transparent;
  color:var(--ink);
  padding:16px 26px;
  border-radius:12px;
  border:1.5px solid var(--line);
  font-weight:700;
  font-size:15px;
  transition:.25s;
}

.btn-secondary:hover{
  border-color:var(--green);
  color:var(--green);
}

.btn-secondary.light{
  border-color:rgba(255,255,255,.4);
  color:#fff;
}

.btn-secondary.light:hover{
  border-color:#fff;
  background:rgba(255,255,255,.08);
}

.hero-badges{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}

.hero-badges span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:13px;
  font-weight:700;
  color:var(--gray);
}

.hero-badges svg{
  color:var(--green);
}

/* HERO VISUAL / PHONE MOCKUP */

.hero-visual{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:520px;
}

.phone-mockup{
  width:290px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  box-shadow:0 30px 60px -20px rgba(15,122,69,.25);
  padding:18px 16px 22px;
  position:relative;
  z-index:2;
}

.phone-notch{
  width:70px;
  height:6px;
  border-radius:6px;
  background:var(--line);
  margin:0 auto 16px;
}

.phone-search{
  display:flex;
  align-items:center;
  gap:8px;
  background:#f2f4f3;
  border-radius:10px;
  padding:10px 12px;
  font-size:13px;
  color:var(--gray);
  margin-bottom:12px;
}

.phone-search svg{
  color:var(--gray);
}

.phone-map{
  height:110px;
  border-radius:12px;
  margin-bottom:14px;
  background:
    radial-gradient(circle at 30% 40%, rgba(66,133,244,.18), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(15,122,69,.18), transparent 45%),
    #eef3f0;
  position:relative;
  overflow:hidden;
}

.phone-map::before,
.phone-map::after{
  content:"";
  position:absolute;
  width:22px;
  height:22px;
  border-radius:50% 50% 50% 0;
  background:var(--red);
  transform:rotate(-45deg);
}

.phone-map::before{
  top:28px;
  left:110px;
}

.phone-map::after{
  width:14px;
  height:14px;
  background:var(--gray);
  opacity:.5;
  top:55px;
  left:190px;
}

.result-card{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
  border-top:1px solid var(--line);
}

.result-card:first-child{
  border-top:none;
}

.result-pin{
  width:30px;
  height:30px;
  border-radius:9px;
  background:var(--green-light);
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.result-pin.muted{
  background:#f2f4f3;
  color:#b7bfba;
}

.result-info{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.result-info strong{
  font-size:13px;
}

.result-stars{
  display:inline-flex;
  align-items:center;
  gap:2px;
  font-size:10px;
  color:var(--yellow);
}

.result-stars.muted{
  color:#b7bfba;
  font-size:11px;
}

.result-card.active .result-info strong{
  color:var(--green-dark);
}

.pin-float{
  position:absolute;
  color:var(--red);
  opacity:.85;
  animation:float 4.5s ease-in-out infinite;
}

.pin-1{ top:8%; left:6%; animation-delay:0s; }
.pin-2{ bottom:14%; left:2%; animation-delay:1.2s; color:var(--blue); }
.pin-3{ top:14%; right:4%; animation-delay:.6s; color:var(--green); }

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

/* SECTION SHARED */

.section{
  padding:110px 48px;
}

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

.section-head h2{
  font-size:38px;
  letter-spacing:-1px;
  font-weight:800;
  margin-bottom:16px;
}

.section-head p{
  font-size:16px;
  line-height:1.6;
  color:var(--gray);
}

/* HIZMET */

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

.feature-list{
  max-width:900px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:18px 20px;
  font-weight:700;
  font-size:14.5px;
}

.feature-item svg{
  color:var(--green);
  flex-shrink:0;
}

/* STEPS */

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

.step-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:28px 22px;
  transition:transform .3s, box-shadow .3s;
}

.step-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px -20px rgba(15,122,69,.25);
}

.step-num{
  display:inline-block;
  font-size:14px;
  font-weight:800;
  color:var(--green);
  background:var(--green-light);
  padding:5px 11px;
  border-radius:8px;
  margin-bottom:16px;
}

.step-card h3{
  font-size:18px;
  margin-bottom:8px;
}

.step-card p{
  font-size:14px;
  line-height:1.55;
  color:var(--gray);
}

/* SECTORS */

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

.sectors-grid{
  max-width:900px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.sector-chip{
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:12px 22px;
  font-size:14px;
  font-weight:700;
  transition:.25s;
}

.sector-chip:hover{
  border-color:var(--green);
  color:var(--green);
}

.sector-chip.more{
  background:transparent;
  border-style:dashed;
  color:var(--gray);
}

/* BENEFITS */

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

.benefit-card{
  text-align:center;
  padding:12px;
}

.benefit-card svg{
  color:var(--green);
  margin-bottom:16px;
}

.benefit-card h3{
  font-size:17px;
  margin-bottom:8px;
}

.benefit-card p{
  font-size:14px;
  line-height:1.55;
  color:var(--gray);
}

/* FINAL CTA */

.final-cta{
  background:linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color:#fff;
  text-align:center;
  padding:110px 48px;
}

.final-cta h2{
  font-size:36px;
  letter-spacing:-1px;
  font-weight:800;
  margin-bottom:16px;
}

.final-cta p{
  font-size:16px;
  color:rgba(255,255,255,.85);
  max-width:520px;
  margin:0 auto 32px;
}

/* FOOTER */

.footer{
  padding:36px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
  border-top:1px solid var(--line);
}

.footer p{
  font-size:13px;
  color:var(--gray);
}

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

.footer-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:var(--green-light);
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s;
}

.footer-social a:hover{
  background:var(--green);
  color:#fff;
}

/* RESPONSIVE */

@media(max-width:1100px){
  .hero{
    grid-template-columns:1fr;
    padding-top:130px;
  }

  .hero-visual{
    order:-1;
    min-height:400px;
  }

  .hero-content > p{
    max-width:none;
  }

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

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

@media(max-width:800px){
  .header{
    height:72px;
    padding:0 20px;
  }

  nav{
    display:none;
  }

  .header-btn span{
    display:none;
  }

  .hero{
    padding:110px 20px 60px;
  }

  .hero h1{
    font-size:38px;
    letter-spacing:-1px;
  }

  .section{
    padding:70px 20px;
  }

  .section-head h2{
    font-size:28px;
  }

  .steps-grid,
  .benefits-grid,
  .feature-list{
    grid-template-columns:1fr;
  }

  .final-cta{
    padding:70px 20px;
  }

  .final-cta h2{
    font-size:28px;
  }

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