:root {
  --bg: #f5f7fb;
  --bg-soft: #eef2f8;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --text: #142033;
  --text-soft: #5b6678;
  --title: #0f1728;
  --primary: #1f4fff;
  --primary-dark: #1639ba;
  --secondary: #0f1728;
  --border: #dbe3ef;
  --border-strong: #c8d4e5;
  --success: #1f9d61;
  --shadow-sm: 0 10px 30px rgba(15, 23, 40, 0.06);
  --shadow-md: 0 20px 50px rgba(15, 23, 40, 0.1);
  --shadow-lg: 0 30px 80px rgba(15, 23, 40, 0.14);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 247, 251, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 227, 239, 0.8);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #4c74ff);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--title);
}

.logo-role {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  font-weight: 600;
  color: var(--title);
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

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

.site-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-sm);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--title);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(31, 79, 255, 0.12), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(76, 116, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #f7f9fd 0%, #edf3fb 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 45%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 430px);
  gap: 2rem;
  align-items: center;
}

.hero-grid-agency {
  align-items: stretch;
}

.eyebrow,
.section-tag,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-content h1,
.page-hero h1 {
  margin: 0 0 1.2rem;
  color: var(--title);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  max-width: 12ch;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  max-width: 14ch;
}

.hero-text {
  margin: 0;
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(200, 212, 229, 0.7);
  border-radius: 999px;
  color: var(--title);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* Cards in hero */
.hero-panel,
.hero-lead-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(200, 212, 229, 0.9);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero-panel h2,
.hero-lead-card h2 {
  margin: 0 0 0.65rem;
  color: var(--title);
  font-size: 1.8rem;
  line-height: 1.15;
}

.panel-role,
.hero-card-text {
  margin: 0;
  color: var(--text-soft);
}

.hero-panel-list {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0 1.6rem;
}

.hero-panel-item {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.hero-panel-item strong {
  color: var(--title);
  font-size: 0.96rem;
}

.hero-panel-item span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.panel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--primary);
}

.panel-link:hover {
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #4c74ff);
  color: #fff;
  box-shadow: 0 18px 35px rgba(31, 79, 255, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 18px 35px rgba(15, 23, 40, 0.16);
}

.btn-secondary:hover {
  background: #0b1220;
}

.btn-outline {
  background: #fff;
  color: var(--title);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-full {
  width: 100%;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--surface-2);
}

.section-dark {
  background: linear-gradient(180deg, #111a2d 0%, #0d1524 100%);
  color: rgba(255, 255, 255, 0.9);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.15;
  color: var(--title);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.section-head-dark h2,
.section-head-dark p,
.section-dark .section-tag {
  color: #fff;
}

.page-hero {
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  background:
    radial-gradient(circle at top left, rgba(31, 79, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f9fd 0%, #eff4fb 100%);
}

/* Trust strip */
.trust-strip {
  padding: 1rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.trust-strip-inner span {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--title);
}

/* Generic grids */
.about-grid,
.contact-grid,
.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 420px);
  gap: 2rem;
  align-items: start;
}

.about-copy h2,
.contact-grid h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  color: var(--title);
  letter-spacing: -0.02em;
}

.about-copy p,
.contact-intro {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.about-card,
.location-card,
.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-card,
.location-card {
  padding: 1.7rem;
}

.about-card h3,
.location-card h3,
.package-card h3,
.premium-feature-card h3,
.premium-template-card h3,
.process-card h3 {
  margin: 0 0 1rem;
  color: var(--title);
  line-height: 1.2;
}

.info-item,
.location-item {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child,
.location-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-item strong,
.location-item strong {
  color: var(--title);
}

.info-item span,
.location-item span {
  color: var(--text-soft);
}

/* Services / templates / packages */
.premium-features-grid,
.premium-templates-grid,
.packages-grid,
.process-grid {
  display: grid;
  gap: 1.5rem;
}

.premium-features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-templates-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.packages-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-feature-card,
.premium-template-card,
.package-card,
.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.premium-feature-card:hover,
.premium-template-card:hover,
.package-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.premium-template-card-featured,
.package-card-featured {
  border-color: rgba(31, 79, 255, 0.28);
  box-shadow: 0 22px 55px rgba(31, 79, 255, 0.12);
}

.premium-template-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.premium-template-label,
.package-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  background: rgba(31, 79, 255, 0.08);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), #4c74ff);
  color: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.premium-feature-card p,
.premium-template-card p,
.package-card p,
.process-card p {
  margin: 0;
  color: var(--text-soft);
}

.premium-template-card .btn,
.package-card .btn {
  margin-top: 1.35rem;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31, 79, 255, 0.12), rgba(76, 116, 255, 0.24));
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.package-price {
  margin: 0.9rem 0 1rem;
  color: var(--title);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.package-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.package-list li + li {
  margin-top: 0.45rem;
}

/* Process */
.process-card {
  position: relative;
}

.process-step {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: rgba(31, 79, 255, 0.1);
  color: var(--primary);
  font-weight: 800;
}

.section-dark .process-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section-dark .process-card h3,
.section-dark .process-card p {
  color: #fff;
}

.section-dark .process-step {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* CTA */
.cta-section {
  padding: 2rem 0 5rem;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(76, 116, 255, 0.22), transparent 25%),
    linear-gradient(135deg, #122246 0%, #1639ba 100%);
  color: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.cta-box p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.85);
}

.cta-box .section-tag {
  color: rgba(255, 255, 255, 0.8);
}

/* Contact */
.contact-list p {
  margin: 0 0 0.7rem;
  color: var(--text-soft);
}

.contact-list strong {
  color: var(--title);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.7rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 700;
  color: var(--title);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--title);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(31, 79, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(31, 79, 255, 0.12);
  background: #fff;
}

.success-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31, 157, 97, 0.22);
  color: var(--success);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.success-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Map */
.map-card {
  overflow: hidden;
}

.map-card iframe {
  display: block;
}

.location-actions {
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  padding: 2.2rem 0;
  background: #0d1524;
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: start;
}

.footer-inner p {
  margin: 0 0 0.35rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #fff;
  font-weight: 600;
}

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

/* Utility for dark sections containing white cards */
.section-dark .premium-template-card {
  background: rgba(255, 255, 255, 0.98);
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .hero-grid-agency,
  .about-grid,
  .contact-grid,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .premium-features-grid,
  .premium-templates-grid,
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-box .btn {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 14px;
  }

  .site-nav a:hover {
    background: var(--surface-2);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .premium-features-grid,
  .premium-templates-grid,
  .packages-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-content h1 {
    max-width: none;
  }

  .hero-panel,
  .hero-lead-card,
  .about-card,
  .contact-form,
  .location-card {
    padding: 1.4rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .logo-name {
    font-size: 0.95rem;
  }

  .logo-role {
    font-size: 0.8rem;
  }

  .hero-badges,
  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badges span,
  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }

  .package-price {
    font-size: 1.8rem;
  }

  .cta-box {
    padding: 1.4rem;
    border-radius: 24px;
  }
}
.reviews-embed-section .section-head {
  margin-bottom: 2rem;
}

.reviews-embed-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.reviews-bottom-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.reviews-bottom-cta .btn {
  min-width: 320px;
}

@media (max-width: 860px) {
  .reviews-embed-box {
    padding: 0.85rem;
    border-radius: 18px;
  }

  .reviews-bottom-cta .btn {
    width: 100%;
    min-width: 0;
  }
}

.package-intro {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.showcase-section {
  overflow: hidden;
}
.home-fullscreen-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background:
    linear-gradient(rgba(10, 20, 40, 0.65), rgba(10, 20, 40, 0.75)),
    url("images/home/hero-bg.jpg") center center / cover no-repeat;
}

.home-fullscreen-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}

.home-fullscreen-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.home-fullscreen-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1050px;
  padding: 2rem 1rem;
}

.home-fullscreen-eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.home-fullscreen-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.home-fullscreen-text {
  max-width: 820px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.16rem;
  line-height: 1.75;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.home-fullscreen-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-scroll-down {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-scroll-down:hover {
  transform: translateX(-50%) translateY(3px);
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 768px) {
  .home-fullscreen-hero h1 {
    font-size: 3rem;
    line-height: 1.02;
  }

  .home-fullscreen-text {
    font-size: 1rem;
  }

  .home-fullscreen-actions {
    flex-direction: column;
    align-items: center;
  }

  .home-fullscreen-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}
.home-benefits-section {
  background: #050b18;
  position: relative;
}

.home-benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.home-benefits-section .container {
  position: relative;
  z-index: 2;
}

.home-benefits-head {
  max-width: 900px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.benefits-scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.6rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 196, 0, 0.5) rgba(255, 255, 255, 0.06);
}

.benefits-scroll-wrap::-webkit-scrollbar {
  height: 10px;
}

.benefits-scroll-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.benefits-scroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(245, 196, 0, 0.55);
  border-radius: 999px;
}

.benefits-scroll-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.2rem 0;
}

.benefit-card-modern {
  width: 300px;
  padding: 1.4rem;
  border-radius: 16px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  color: #fff;
  flex-shrink: 0;

  transition: all 0.2s ease;
}

/* hover più elegante */
.benefit-card-modern:hover {
  transform: translateY(-4px);
  border-color: rgba(245,196,0,0.4);
  background: rgba(255,255,255,0.05);
}

.benefit-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: rgba(245, 196, 0, 0.12);
  border: 1px solid rgba(245, 196, 0, 0.22);
  color: #f5c400;
  font-weight: 800;
  font-size: 1rem;
}

.benefit-card-modern h3 {
  margin: 0 0 0.8rem;
  color: #ffffff;
  font-size: 1.28rem;
  line-height: 1.2;
}

.benefit-card-modern p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  font-size: 0.96rem;
}

@media (max-width: 768px) {
  .benefit-card-modern {
    width: 86vw;
    max-width: 320px;
  }
}
.text-gradient {
  background: linear-gradient(90deg, #f5c400, #ffd95a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-head h2 {
  color: #fff;
  font-weight: 800;
  font-size: 2.4rem;
}

.process-subtext {
  margin-top: 0.8rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
}

.process-subtext strong {
  color: #fff;
  font-weight: 600;
}
.process-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.process-card-modern {
  padding: 1.6rem 1.4rem;
  border-radius: 16px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.25s ease;
}

.process-card-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(245,196,0,0.4);
  background: rgba(255,255,255,0.05);
}
.process-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;

  margin-bottom: 1rem;

  background: rgba(245,196,0,0.08);
  border: 1px solid rgba(245,196,0,0.2);
}
.process-card-modern h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.process-card-modern p {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .process-grid-modern {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .process-grid-modern {
    grid-template-columns: 1fr;
  }
}
.trust-strip-modern {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 3.2rem; /* più spazio sotto */
}

.trust-pill-card {
  padding: 1rem 1rem 0.9rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.trust-pill-card .benefit-card-number {
  margin: 0 auto 0.8rem;
}

.trust-pill-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

@media (max-width: 900px) {
  .trust-strip-modern {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .trust-strip-modern {
    grid-template-columns: 1fr;
  }
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 1000;
}

.nav-dropdown-menu a {
  padding: 10px 15px;
  text-decoration: none;
  color: white;
}

.nav-dropdown-menu a:hover {
  background: #222;
}

/* apertura al hover (desktop) */
.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu.open {
  display: flex;
}

.nav-template {
  color: #1e3a8a;
  font-weight: bold;
}

.header-logo {
  height: 50px;
  width: auto;
  display: block;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.nav-toggle {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    width: 56px;
    height: 56px;
    cursor: pointer;
    z-index: 1100;
    position: relative;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    z-index: 1050;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 0;
  }

  .nav-dropdown-menu {
    display: none;
    flex-direction: column;
    margin-top: 0.5rem;
  }

  .nav-dropdown-menu.open {
    display: flex;
  }
}

.reviews-section {
  overflow: hidden;
}

.reviews-summary {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.review-score-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  flex-wrap: wrap;
}

.review-score-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-score {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.review-stars-big {
  color: #ffd45a;
  letter-spacing: 2px;
  font-size: 1.05rem;
}

.review-count {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.reviews-slider-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.reviews-slider {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

.review-card {
  width: 360px;
  min-height: 240px;
  padding: 1.4rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(28, 45, 110, 0.55), rgba(15, 25, 68, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(10px);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  line-height: 1.3;
}

.review-stars {
  color: #ffd45a;
  font-size: 0.95rem;
  letter-spacing: 2px;
  white-space: nowrap;
}

.review-text {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  font-size: 0.97rem;
  margin: 0 0 1.25rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-meta {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.reviews-footer {
  margin-top: 2rem;
  text-align: center;
}

.reviews-slider-wrap:hover .reviews-slider {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .reviews-slider-wrap {
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .reviews-slider {
    width: auto;
    animation: none !important;
  }

  .review-card {
    width: 85vw;
    min-height: 220px;
    scroll-snap-align: start;
  }

  .reviews-slider-wrap::-webkit-scrollbar {
    height: 8px;
  }

  .reviews-slider-wrap::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
  }
}
@keyframes reviewsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}