:root {
  --primary: #0b2a63;
  --primary-mid: #0056cc;
  --primary-glow: #3b82f6;
  --accent: #20c997;
  --accent-soft: #d7f5ec;
  --accent-fg: #08302a;
  --bg: #fbfcfe;
  --card: #ffffff;
  --fg: #14213d;
  --muted: #f2f5f9;
  --muted-fg: #5b6b82;
  --border: #e2e8f0;
  --radius: 16px;
  --gradient-hero: linear-gradient(150deg, var(--primary) 0%, var(--primary-mid) 55%, #17a2a2 100%);
  --gradient-accent: linear-gradient(100deg, var(--accent), var(--primary-glow));
  --shadow-soft: 0 2px 8px -2px rgba(11, 42, 99, 0.12);
  --shadow-card: 0 12px 32px -14px rgba(11, 42, 99, 0.3);
  --shadow-glow: 0 24px 60px -20px rgba(0, 86, 204, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}
h3 {
  font-size: 1.15rem;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 780px;
}

section {
  padding: 80px 0;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.center {
  text-align: center;
}

.lead {
  color: var(--muted-fg);
  font-size: 1.05rem;
  margin-top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-xl {
  padding: 16px 28px;
  font-size: 1.02rem;
  border-radius: 14px;
}

.btn-hero {
  background: var(--gradient-accent);
  color: var(--accent-fg);
  box-shadow: var(--shadow-soft);
}

.btn-hero:hover {
  box-shadow: var(--shadow-glow);
}

.btn-on-dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-outline {
  background: var(--card);
  border-color: var(--border);
  color: var(--fg);
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 254, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

.brand .mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gradient-hero);
  color: #fff;
}

.brand em {
  color: var(--accent);
  font-style: normal;
}

.site-nav {
  display: none;
  gap: 28px;
  font-size: 0.92rem;
  color: var(--muted-fg);
}

.site-nav a:hover {
  color: var(--fg);
}

@media (min-width: 960px) {
  .site-nav {
    display: flex;
  }
}

/* Hero */
.hero {
  background: var(--gradient-hero);
  color: #fff;
  overflow: hidden;
}

.hero .container {
  display: grid;
  gap: 56px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding: 112px 0;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 500;
}

.hero h1 {
  margin-top: 24px;
}

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

.hero p.sub {
  margin-top: 24px;
  max-width: 34rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 32px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent-soft);
}

.hero-visual img {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-glow);
}

/* Grids and cards */
.grid {
  display: grid;
  gap: 22px;
  margin-top: 48px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.card.plain {
  background: var(--muted);
  box-shadow: none;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-fg);
  font-size: 1.2rem;
}

.card h3 {
  margin-top: 18px;
}

.card p {
  margin-top: 8px;
  font-size: 0.94rem;
  color: var(--muted-fg);
}

.section-muted {
  background: var(--muted);
}

.step-num {
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Plans */
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  padding: 32px;
}

.plan.highlight {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-glow);
}

.plan .tag {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--gradient-accent);
  color: var(--accent-fg);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
}

.plan .range {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 4px;
}

.plan .price {
  font-family: "Sora", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 20px;
}

.plan .price small {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted-fg);
}

.check-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 12px;
  font-size: 0.94rem;
  flex: 1;
}

.check-list li {
  display: flex;
  gap: 10px;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.plan .btn {
  margin-top: 28px;
}

.table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

thead tr {
  background: var(--muted);
  text-align: left;
}

th,
td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

thead th {
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

td {
  color: var(--muted-fg);
}

/* Deliverables */
.deliverables {
  list-style: none;
}

.deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  font-size: 0.94rem;
}

.deliverables .icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  font-size: 1rem;
}

/* Testimonials */
.testimonials {
  background: var(--gradient-hero);
  color: #fff;
}

.testimonial {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(6px);
}

.stars {
  color: var(--accent-soft);
  letter-spacing: 2px;
}

.testimonial blockquote {
  margin-top: 14px;
  font-size: 1.08rem;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-size: 0.9rem;
}

.avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-fg);
  font-weight: 700;
}

.testimonial figcaption strong {
  display: block;
}

.testimonial figcaption span span {
  color: rgba(255, 255, 255, 0.72);
}

/* FAQ */
.faq {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 600;
  text-align: left;
  padding: 18px 4px;
  cursor: pointer;
  color: inherit;
}

.faq-question .chev {
  transition: transform 0.2s ease;
  color: var(--muted-fg);
}

.faq-question[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 4px 20px;
  color: var(--muted-fg);
  font-size: 0.96rem;
}

.faq-answer.open {
  display: block;
}

/* Form */
.form-card {
  margin-top: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .full {
    grid-column: 1 / -1;
  }
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.field label .req {
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: inherit;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--primary-glow);
  outline-offset: 1px;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.error {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: #d33a3a;
  min-height: 1em;
}

.form-note {
  margin-top: 12px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-fg);
}

.success {
  text-align: center;
  padding: 24px 0;
}

.success p {
  color: var(--muted-fg);
  margin: 12px auto 0;
  max-width: 30rem;
}

.hidden {
  display: none !important;
}

/* Toast */
.toast-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
  z-index: 100;
}

.toast {
  background: var(--fg);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-card);
  animation: toast-in 0.2s ease;
}

.toast.error {
  background: #b3261e;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  font-size: 0.9rem;
  color: var(--muted-fg);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.site-footer a {
  color: var(--accent);
}

.site-footer a:hover {
  text-decoration: underline;
}

.imgLogo{
  height: 60px;
}

.btn-hero{
  color: white;
}