*{box-sizing:border-box;margin:0;padding:0}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
html,body{height:100%}
html{overflow-x:hidden}

/* ========== Theme ========== */
:root{
  --o1:#FF7A00;
  --o2:#FF3D00;
  --text:#1f2328;
  --muted:#6b7280;
  --card:#fff;
  --shadow:0 18px 44px rgba(0,0,0,.20);
}

body{
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
  background:linear-gradient(120deg,var(--o1),var(--o2));
  color:#111;
  display:flex;
  flex-direction:column;
  min-width:0;           /* prevents overflow on small screens */
}

.container{max-width:1280px;margin:0 auto;padding:20px 24px}

/* ========== Header ========== */
header{position:sticky;top:0;z-index:30;background:linear-gradient(120deg,var(--o1),var(--o2))}
.navbar{display:flex;align-items:center;justify-content:space-between;padding:14px 0;color:#fff}
.navlinks{display:flex;gap:20px;align-items:center}
.navlinks a{color:#fff;font-weight:800;opacity:.95}
.navlinks a:hover{opacity:1;text-decoration:underline}

.brand img{height:30px}

/* Sign In button (orange text) */
.signin{
  background:#fff;
  color:#ff7a00 !important;
  font-weight:900;
  border:none;border-radius:16px;
  padding:10px 18px;
  box-shadow:var(--shadow);
  transition:.3s ease;
}
.signin:hover{background:#ff7a00;color:#fff !important;cursor:pointer}

/* Mobile Nav */
.menu-btn{display:none;background:#fff;color:#ff5a00;border:none;border-radius:12px;padding:8px 12px;font-weight:900}
@media(max-width:940px){
  .navlinks{display:none}
  .menu-btn{display:inline-block}
  .navlinks.open{
    display:flex;flex-direction:column;gap:12px;
    position:absolute;right:24px;top:70px;background:#fff;color:#ff5a00;
    padding:16px;border-radius:16px;box-shadow:var(--shadow)
  }
  .navlinks.open a{color:#ff5a00}
}

/* ========== Hero ========== */
.main{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:56px;align-items:center;margin-top:18px
}
.hero h1{
  font-family:'Poppins',system-ui,sans-serif;
  font-size:clamp(28px,8vw,52px);
  line-height:1.1;color:#fff;margin-bottom:10px;
  text-shadow:0 6px 20px rgba(0,0,0,.20)
}
.hero p{color:#fff;opacity:.92;margin-bottom:16px}
.input-row{display:flex;gap:12px;flex-wrap:wrap}

.input{
  flex:1 1 260px;
  max-width:520px;
  width:100%;
  padding:14px 16px;border-radius:16px;border:0;box-shadow:var(--shadow)
}
.cta{
  background:#fff;color:#ff5a00;border:none;border-radius:16px;
  padding:12px 18px;font-weight:900;box-shadow:var(--shadow);white-space:nowrap
}

/* Service pills */
.pills{
  display:grid;
  grid-template-columns:repeat(2,minmax(140px,1fr));
  gap:14px;margin-top:16px
}
.pill{
  display:flex;gap:10px;align-items:center;background:#fff;border-radius:16px;
  padding:12px 14px;box-shadow:var(--shadow);font-weight:900;color:#ff5a00
}

/* Card */
.card-wrap{display:flex;align-items:center;justify-content:center;min-height:300px}
.card{
  width:min(500px,92vw);
  aspect-ratio:5/3;
  background:#fff;border-radius:28px;
  box-shadow:0 28px 80px rgba(0,0,0,.35);
  display:flex;align-items:center;justify-content:center
}
.card .logo{max-width:68%}

/* ========== Sections ========== */
.section{
  background:rgba(255,255,255,.96);
  padding:20px;
  border-radius:24px;
  box-shadow:var(--shadow);
  margin-top:26px
}
.section h2{font-size:22px;margin-bottom:12px}

/* Operators & offers grids */
.ops{display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));gap:14px}
.offers{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;margin-top:16px}
.offer{background:#fff;border-radius:22px;padding:18px;box-shadow:var(--shadow)}
.offer h3{font-family:'Poppins',sans-serif;font-size:20px;margin-bottom:6px;color:#ff5a00}
.badge{display:inline-block;background:linear-gradient(120deg,var(--o1),var(--o2));color:#fff;border-radius:12px;padding:4px 10px;font-size:12px;font-weight:800}

/* === Tight Top Operators box === */
.section.operators{
  padding:12px 18px;
  max-width:560px;
  display:flex;flex-direction:column;gap:8px;
}
.section.operators h2{margin-bottom:2px}
.section.operators .ops{
  display:grid;
  grid-template-columns:repeat(4,minmax(70px,1fr));
  gap:10px;align-items:center;justify-items:center;
}
.section.operators .op-logo{width:60px;height:60px;object-fit:contain}

/* ========== Footer ========== */
footer{background:#101114;color:#e7e7e7;margin-top:auto;padding-top:20px;padding-bottom:0}
.footer-wrap{
  max-width:1180px;margin:0 auto;padding:20px 24px;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:16px;align-items:start
}
.footer-col h4{font-family:'Poppins',sans-serif;margin-bottom:6px;font-size:15px;color:#fff}
.footer-col p,.footer-col a{font-size:13px;line-height:1.6;color:#cfcfcf}
.footer-col a:hover{color:#fff;text-decoration:underline}
.copy{border-top:1px solid #222;padding:10px 0;text-align:center;color:#999;font-size:13px}

/* Forms */
label{font-weight:800;color:#333;margin-bottom:6px;display:block}
.form-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:16px}

/* Links inside white cards */
.section a{color:#ff5a00;text-decoration:underline}

/* ========== Responsive Tweaks ========== */
@media (max-width:1024px){
  .container{padding:18px 18px}
}

@media (max-width:768px){
  .container{padding:16px}
  .brand img{height:26px}
  .hero p{font-size:0.95rem}
  .pills{grid-template-columns:1fr 1fr}
  .section{padding:16px}
  .offers{grid-template-columns:1fr 1fr}
  .section.operators{max-width:100%;padding:12px 16px}
  .section.operators .ops{grid-template-columns:repeat(2,minmax(70px,1fr))}
  .section.operators .op-logo{width:56px;height:56px}
}

@media (max-width:480px){
  .container{padding:14px}
  .offers,.ops{grid-template-columns:1fr}
  .pills{grid-template-columns:1fr}
  .cta{width:100%}
}
/* ======= HEADER & LOGO FIX ======= */
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(120deg, #FF7A00, #FF3D00);
}

/* Navbar layout */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Brand logo */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img.logo {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* Nav links */
.navlinks a {
  color: #fff;
  font-weight: 700;
  margin-left: 20px;
  text-decoration: none;
}

.navlinks a:hover {
  opacity: 0.8;
}

/* Sign In button */
.navlinks .signin {
  background: #fff;
  color: #ff7a00;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
}
