:root{
  --text:#0b0b0b;
  --muted:#6b6b6b;
  --chip:#efefef;
  --accent:#C9FF2D;
}

*{ box-sizing:border-box; margin:0; padding:0; }
body{
  font-family:"Inter",sans-serif;
  color:var(--text);
  background:#fff;
}

.container{ max-width:1200px; margin:0 auto; padding:0 28px; }

/* ---------------- Header ---------------- */
.site-header {
  background: #fff;
  position: sticky;   /* ✅ makes it stick while scrolling */
  top: 0;             /* sticks to the very top of the page */
  z-index: 1000;      /* keeps it above other sections */
  box-shadow: 0 0px 0px rgba(0,0,0,0.05); /* optional subtle shadow */
}



.header-inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand-logo{
  height:210px;
  width: auto;
  display:block;
}

.main-nav ul{ list-style:none; display:flex; gap:32px; }
.nav-link{
  text-decoration:none;
  color:#111;
  font-size:15px;
  font-weight:500;
  padding:10px 18px;
  border-radius:999px;
}
.nav-link.active{
  background:var(--accent);
}

.header-actions{
  display:flex; align-items:center; gap:14px;
}
.sign-in{
  text-decoration:none; color:#111; font-weight:600; font-size:15px;
}
.chip{
  text-decoration:none;
  background:var(--chip);
  color:#111;
  font-weight:600;
  font-size:14px;
  padding:10px 16px;
  border-radius:999px;
}

/* ---------------- Hero ---------------- */
.hero{
  display:flex;
  margin-left: 10px;
  align-items:center;
  justify-content:center;
  margin-top:50px;
  min-height:calc(100vh - 72px);
  background:#fff;
  position:relative;
  text-align:center;
  overflow:hidden;
}

/* PREXPIRY title */
.hero-word {
  position: relative;
  z-index: 2;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.9;
  color: #000;
  font-size: clamp(120px, 16vw, 220px);
  margin-bottom: -90px;
}

/* Animate-on-scroll base */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.tagline {
  font-size: 16px;
  font-weight: 500;
  color: #262626;
  margin-bottom: 8px;
  margin-top: 12px;
}

.hero-inner{
  width:100%;
  position:relative;
}

.hero-center{
  position:relative;
  display:inline-block;
}

.hero-img {
  position: relative;
  z-index: 3;
  margin-left: 120px;
  width: min(960px, 92%);
  height: auto;
  margin-top: -60px;
}

.hero-cta {
  position: absolute;
  z-index: 4;
  left: 25px;
  top: 55%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-accent{
  display:inline-block;
  background:var(--accent);
  color:#111;
  font-weight:800;
  font-size:20px;
  line-height:1;
  padding:16px 32px;
  border-radius:999px;
  text-decoration:none;
}
.cta-caption{
  font-size:12px;
  color:#111;
  line-height:1.2;
}

/* About Section */
.about {
  text-align: center;
  padding: 80px 80px 120px;
}

.about-title {
  font-size: 110px;
  font-weight: 800;
  margin-bottom: 50px;
}

.about-subtitle {
  display: inline-block;
  background: #2c1c1c;
  color: #fff;
  padding: 24px 60px;
  border-radius: 9999px;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 60px;
}

.about-text {
  max-width: 1200px;
  margin: 0 auto 30px auto;
  font-size: 28px;
  line-height: 2;
  color: #020202;
  text-decoration: none;
}

.about-link {
  font-size: 24px;
  margin-bottom: 40px;
}

.bordered-text {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #000;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.read-more {
  margin-top: -15px;
  display: inline-flex;
  align-items: center;
  background: #c6ff1a;
  color: #000;
  font-weight: 700;
  font-size: 24px;
  padding: 20px 48px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.read-more:hover { background: #b3f017; }
.read-more .external-icon { width: 24px; height: 24px; margin-left: 12px; }
.external-icon { font-size: 24px; margin-left: 12px; }

.thin-distinct { font-weight: 100; font-style: italic; color: #111; }

/* ================= PRICING ================= */
.pricing {
  padding: 50px 80px 160px;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.pricing-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.pricing-left { flex: 1; text-align: left; }
.pricing-title { font-size: 120px; font-weight: 900; margin-bottom: 40px; }
.pricing-text {
  font-size: 22px; line-height: 1.9; margin-bottom: 40px;
  max-width: 600px; color: #111; margin-top:-10px;
}
.btn-dark {
  display: inline-block; background: #000; color: #fff;
  font-weight: 600; font-size: 20px; padding: 16px 36px;
  border-radius: 9999px; text-decoration: none;
  transition: background 0.3s ease;
}
.btn-dark:hover { background: #222; }

.pricing-right {
  flex: 1; background: #1f1f1f; color: #fff;
  padding: 60px 40px; border-radius: 40px;
  font-size: 20px; line-height: 1.8;
  margin-top: 35px; text-align: center; max-width: 490px;
}
.pricing-right .btn-accent {
  margin-top: 40px; display: inline-block;
  font-size: 20px; padding: 16px 36px;
}
.pricing-img {
  position: absolute; bottom: 60px; left: -80px;
  width: 370px; height: auto;
}

@media (max-width: 900px) {
  .pricing-content { flex-direction: column; text-align: center; }
  .pricing-left, .pricing-right { max-width: 100%; }
  .pricing-text { margin-left: auto; margin-right: auto; }
  .pricing-img { display: none; }
}

/* ================= CONTACT ================= */
.contact {
  margin-top: -70px;
  margin-bottom: 60px;
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.contact-title {
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 40px;
}

.contact-form {
  background: #fff;
  border-radius: 18px;
  padding: 40px 50px;
  max-width: 1000px;
  margin: 0 auto 60px auto;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.form-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}

.contact-form input,
.contact-form textarea {
  padding: 18px 16px;
  border: none;
  background: #f2f2f2;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  flex: 1;
  resize: none;
}

/* 📌 Address taller than message */
.address-field { min-height: 180px; }
/* Message slightly smaller than address */
.form-row textarea:not(.address-field) { min-height: 120px; }
/* Email full width row */
.form-row.email-row input { flex: 100%; height: 48px; }

.submit-btn {
  margin-top: 15px;
  width: 100%;
  font-size: 18px;
  padding: 16px;
  border: none;
  cursor: pointer;
}

/* --- Contact Footer --- */
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  align-items: center;
  max-width: 1200px;
  margin: 30px auto 0 auto;
  gap: 20px 40px;
  font-size: clamp(12px, 1.4vw, 15px);
  line-height: 1.4;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 220px;
}

.contact-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #000;
  color: #fff;
  padding: 80px 0 ;   /* reduced padding for a smaller footer */
  text-align: center;
  margin-bottom: 0px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px; /* cleaner spacing */
}

.footer-logo {
  height: 320px; /* logo unchanged */
  width: auto;
}

.footer-slogan {
  font-size: 15px;  /* text unchanged */
  font-weight: 500;
  color: #e0e0e0;
  margin-top: -100px; /* small gap below logo */
}
