:root {
  --bg: #F3F5F7;
  --card: #ffffff;
  --text: #17212a;
  --muted: #6b7280;
  --accent-start: #0A66C2;
  /* LinkedIn blue */
  --accent-end: #08A0C7;
  /* teal-ish for gradient accent */
  --glass: rgba(255, 255, 255, 0.6);
  --radius: 12px;
  --shadow-soft: 0 6px 18px rgba(14, 30, 37, 0.08);
  --shadow-sm: 0 4px 10px rgba(14, 30, 37, 0.06);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  padding-bottom: 40px;
}

/* Container */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--accent-start)
}

.brand img {
  width: 36px;
  height: 36px;
  position: relative;
  top: 1px;
  left: 5px;
  object-fit: contain; /* keeps aspect ratio */
  display: block;
}

.brand .name {
  font-size: 1.05rem;
  letter-spacing: 0.2px
}

.icon-name {
  margin-left: -30px;
  cursor: pointer;
}

/* Nav links */
nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-left: -60px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 6px 0
}

nav a:hover {
  color: var(--text)
}

nav a::after {
  content: "";
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 2px;
  transition: width .28s ease;
}

nav a:hover::after {
  width: 100%
}

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

.btn {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.12);
  transition: transform .16s ease, box-shadow .16s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 102, 194, 0.12)
}

.hero .actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 102, 194, 0.30)
}

.btn.secondary {
  background: transparent;
  color: var(--accent-start);
  border: 1px solid rgba(10, 102, 194, 0.12);
  padding: 8px 14px;
  border-radius: 9px;
  font-weight: 600;
}

.cta-small {
  font-size: 0.9rem
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container{
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 32px;
  align-items: center;
  padding: 0;
  /* margin-top: -20px; */
  flex: 1
}

.hero-left {
  padding-right: 6px
}

.kicker {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  color: white;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 14px
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.04;
  margin: 0 0 12px;
  font-weight: 700
}

.hero h1 .highlight {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero p {
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 18px;
  font-size: 1.02rem
}

.hero .actions {
  margin-top: 6px
}

.hero .meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem
}

.hero .meta a{
  color:var(--accent-start);
  text-decoration:none;
}

.hero .meta a:hover{
  text-decoration: underline;
}

.extension-demo {
  width: 100%;
  max-width: 720px; /* adjust based on your layout */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

.extension-demo video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

/* How it works - timeline */
.section {
  padding: 80px 0px;
  background: linear-gradient(180deg, var(--bg), #eef3f7);
  padding-bottom: 80px;
}

#how {
  background: #f7f9fc;
}

.section h2 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.muted {
  color: var(--muted)
}

.timeline {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px
}

.step {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  flex: 1;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease;
}

.step:hover {
  transform: translateY(-3px)
}

.step .ico {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 10px;
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.12)
}

.step h3 {
  margin: 6px 0 8px;
  font-size: 1.05rem
}

.step p {
  color: var(--muted);
  font-size: 0.95rem
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px
}

.feature {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
}

.feature:hover {
  transform: translateY(-3px)
}

.feature .f-ico {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-end), var(--accent-start));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700
}

.feature h4 {
  margin: 0;
  font-size: 1.02rem
}

.feature p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.93rem
}

/* Pricing */
.pricing-wrap {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
  align-items: stretch;
}

.plan {
  flex: 1;
  background: var(--card);
  padding: 22px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .30s ease, box-shadow .30s ease;
  display: flex;
  flex-direction: column;
  align-items: center;  /* centers horizontally */
  text-align: center;   /* centers text */
  max-width: 480px;
}

.plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(12, 22, 35, 0.09)
}

.plan .title {
  display: inline-block; /* Ensures padding and margin behave */
  font-weight: 700;
  font-size: 1rem;        /* A standard, clean size */
  padding: 8px 24px;      /* Creates a nice pill shape */
  border-radius: 999px;   /* Guarantees a perfect pill shape */
  margin-bottom: 14px;
  text-transform: uppercase; /* Makes it look more like a "badge" */
  letter-spacing: 0.05em;  /* Adds a more premium feel */
}

/* 2. Style for the FREE pill */
.plan.free .title {
  background-color: #eef2ff; /* A very light, subtle blue/purple */
  color: #4338ca;         /* A strong, dark blue/indigo text */
}

/* 3. Style for the PRO pill */
.plan.pro .title {
  background-color: #2563eb; /* Matches your button's blue */
  color: #ffffff;            /* White text for contrast */
}

.price {
  font-size: 1.9rem;
  color: var(--accent-start);
  font-weight: 700;
  margin-bottom: 6px
}

.plan ul {
  margin: 12px 0;
  padding-left: 0;
  /* list-style: none;      */
  color: var(--muted);
  text-align: left;
}

.plan .foot {
  margin-top: 14px
}

.credit-card {
  font-size: small;
  padding-top: 7px;
}

/* 1. Base style for BOTH buttons */
.plan button {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 30px;
  border-radius: 8px; /* Matches your card's border-radius */
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  width: 100%; /* Makes buttons full-width in the card */
  box-sizing: border-box; /* Ensures padding doesn't break width */
}

/* 2. Primary Button ("Upgrade Now") */
/* (This should be the gradient you already use) */
.plan .btn-primary {
  background: linear-gradient(to right, #3b82f6, #2563eb);
  color: #ffffff;
  border-color: #2563eb;
}

.plan .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* 3. Secondary "Ghost" Button ("Get Free") */
.plan .btn-secondary {
  background-color: #ffffff;  /* White background */
  color: #2563eb;          /* Blue text (matches primary) */
  border: 1px solid #d1d5db; /* A neutral light gray border */
}

.plan .btn-secondary:hover {
  border-color: #2563eb;    /* Border becomes blue on hover */
  background-color: #f9fafb; /* Slight gray background on hover */
  transform: translateY(-2px);
}

/* Privacy / trust */
.trust {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: var(--shadow-soft)
}

.trust .lock {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.6rem
}

.trust p {
  margin: 0;
  color: var(--muted)
}

.policy-link {
  position: relative;
  top: 30px;
  margin-bottom: -20px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.policy-link a{
  color:var(--accent-start);
  text-decoration:none;
}

.policy-link a:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(180deg, #f9fbfd, #eef3f7);
  height: 90%;
}

.contact-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-info p {
  margin-bottom: 18px;
  color: var(--muted);
  max-width: 42ch;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text);
  line-height: 1.8;
  padding-left: 10px;
}

.contact-list li {
  margin-bottom: 6px;
}

.contact-list a {
  color: var(--accent-start);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: var(--card);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-start);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.15);
  outline: none;
}

.contact-form .btn {
  align-self: flex-start;
}

#formResult {
  margin-top:10px; 
  color:linear-gradient(90deg, var(--accent-start), var(--accent-end)); 
  font-weight:bold;
}

/* Responsive */
@media (max-width: 720px) {
  .contact-container {
    flex-direction: column;
    gap: 24px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-info h2 {
    text-align: center;
  }

  .contact-info p,
  .contact-list {
    text-align: center;
  }

  .contact-form .btn {
    align-self: center;
  }
}


/* Footer */
footer {
  padding: 20px 0;
  padding-top: 23px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.8);

}

/* Responsive */
@media (max-width:980px) {
  .hero {
    grid-template-columns: 1fr 360px
  }

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

  .container {
    padding: 0 16px
  }
}

@media (max-width:720px) {
  .nav {
    padding: 10px 0
  }

  nav ul {
    display: none
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 30px
  }

  .mock-card {
    height: 300px
  }

  .timeline {
    flex-direction: column;
    gap: 14px
  }

  .features-grid {
    grid-template-columns: 1fr
  }

  .pricing-wrap {
    flex-direction: column
  }
}

/* Fade-in animation helpers */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* small utilities */
.center {
  text-align: center
}

.mb-8 {
  margin-bottom: 32px
}

.mt-6 {
  margin-top: 18px
}