/* =========================
   Base / Reset
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #ffffff;
}

/* =========================
   Utilities
========================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
  margin: 0 auto;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #1e40af;
  text-decoration: none;
}

.btn-secondary {
  border: 2px solid #2563eb;
  color: #2563eb;
}

.btn-secondary:hover {
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
}

/* =========================
   Header
========================= */
.site-header {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.logo a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
}
.logo img {
  height: 48px;   /* bigger & visible */
  width: auto;
  display: block;
  object-fit: contain;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  height: 120px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  align-items: center;
}

.main-nav a {
  font-weight: 500;
  color: #1f2933;
}

.main-nav .btn {
  padding: 0.5rem 1rem;
}

.lang-switch a {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* =========================
   Hero Section
========================= */
.hero {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  max-width: 720px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 2rem;
  color: #374151;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 1rem;
  color: #374151;
}

.hero-proof {
  margin-top: 1.3rem;
  font-size: 0.9rem;
  color: #2563eb;
  font-weight: 600;
}

/* =========================
   Services
========================= */
.services {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.service-card p {
  margin-bottom: 1rem;
  color: #4b5563;
}
.price {
  font-size: 2rem;
  font-weight: 800;
  color: #1e3a8a;
}

.tagline {
  font-size: 0.95rem;
  opacity: 0.8;
}

.service-card.popular {
  border: 2px solid #2563eb;
  transform: scale(1.03);
}

.service-card .badge {
  background: linear-gradient(90deg,#1e3a8a,#2563eb);
  color: #fff;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}


.how-it-works {
  background: #f8fafc;
  padding: 5rem 0;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step {
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
}

.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  color: #555;
  font-size: 0.95rem;
}

/* =========================
   Web Development Page
========================= */
.webdev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.webdev-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 2.5rem;
}

.webdev-card h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.webdev-card ul {
  list-style: none;
  margin: 1.5rem 0;
}

.webdev-card li {
  margin-bottom: 0.6rem;
}


/* =========================
   Why Us
========================= */
.why-us {
  padding: 4rem 0;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.benefits {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
}

.benefits li {
  padding: 0.8rem 0;
  font-size: 1.05rem;
}

/* =========================
   CTA
========================= */
.cta {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  text-align: center;
}


.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.cta .btn-primary {
  background-color: #ffffff;
  color: #2563eb;
}

.cta .btn-primary:hover {
  background-color: #e5e7eb;
}
/* =========================
   Contact Form
========================= */
.contact-form {
  max-width: 520px;
  margin: 2.5rem auto 4rem; /* ⬅ THIS is the key */
  padding: 2rem;
  background-color: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.form-group {
  margin-bottom: 1.3rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-family: inherit;
  font-size: 1rem;
  background-color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.contact-form button {
  width: 100%;
  margin-top: 0.5rem;
}
/* =========================
   Footer
========================= */
.site-footer {
  background-color: #111827;
  color: #e5e7eb;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.site-footer h4 {
  margin-bottom: 0.8rem;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: #e5e7eb;
  opacity: 0.9;
}

.site-footer a:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}
/* Horizontal footer navigation */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 1rem;
}

.footer-nav a {
  color: #e5e7eb;
  font-weight: 500;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}
/* Footer layout fine-tune */
.footer-grid {
  align-items: center;
}

.footer-nav {
  justify-content: flex-end;
}

.footer-bottom {
  margin-top: 2.5rem;
  text-align: center;
  width: 100%;
}

/* =========================
   Responsive
========================= */
/*@media (max-width: 768px) {
  .main-nav ul {
    gap: 0.8rem;
  }

  .hero {
    padding: 3rem 0;
  }
}*/
/* =========================
   WhatsApp Floating Button
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}
/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {

  /* Header */
  .site-header .container {
    min-height: 60px;
    padding: 0.6rem 1rem;
  }

  .logo img {
    height: 40px;
  }

  .main-nav ul {
    gap: 0.6rem;
    font-size: 0.95rem;
  }

  .main-nav .btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.9rem;
  }

  /* Hero */
  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* Sections */
  .services,
  .why-us,
  .cta {
    padding: 2.8rem 0;
  }

  .services h2,
  .why-us h2,
  .cta h2 {
    font-size: 1.6rem;
  }

  /* Cards */
  .service-card,
  .webdev-card {
    padding: 1.6rem;
  }

  /* Forms */
  .contact-form {
    padding: 1.5rem;
    margin: 2rem auto 3rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* WhatsApp */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
}
@media (max-width: 768px) {

  .site-header .container {
    flex-direction: column;
    align-items: center;
  }

  .main-nav {
    width: 100%;
    margin-top: 0.6rem;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav ul li {
    margin: 0.25rem 0.6rem;
  }

  .main-nav .btn {
    width: 100%;
    margin-top: 0.6rem;
    text-align: center;
  }
}
/* MOBILE HAMBURGER */
@media (max-width: 768px) {

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.9rem;
    cursor: pointer;
    color: #1e3a8a;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-top: 0.8rem;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .main-nav ul li {
    margin: 0.6rem 0;
  }

  .main-nav .btn {
    width: 100%;
    text-align: center;
  }
}

/* hide hamburger on desktop */
.mobile-menu-toggle {
  display: none;
}
/* FORCE mobile hamburger visibility */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block !important;
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 9999;
  }
}
@media (max-width: 768px) {

  .site-header .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .logo {
    max-width: calc(100% - 70px);
  }

  .logo img {
    max-width: 100%;
    height: auto;
  }

  .mobile-menu-toggle {
    position: relative;
    top: 0;
    right: 0;
    margin-left: auto;
    font-size: 2rem;
    padding: 0 0.4rem;
  }
}
/* iPad portrait logo size fix */
@media (max-width: 820px) and (min-width: 600px) {
  .logo img {
    height: 32px;
    max-width: 140px;
  }
}
/* FOOTER NAV – HORIZONTAL ALIGNMENT */
.site-footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  padding: 0;
  margin: 0.8rem 0 0;
}

.site-footer ul li {
  list-style: none;
}

.site-footer ul li a {
  font-weight: 500;
  white-space: nowrap;
}

/* Package grid spacing */
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  gap: 1.8rem;
}

/* Package card sizing */
.service-card {
  padding: 2rem 1.8rem;
  border-radius: 18px;
}

/* Reduce height & tighten text */
.service-card ul {
  margin: 1.2rem 0 1.5rem;
}

.service-card h3 {
  font-size: 1.35rem;
}

.service-card .price {
  font-size: 1.9rem;
}

/* Mobile edge padding */
@media (max-width: 600px) {
  .services-grid {
    padding: 0 1rem;
  }
}
/* iPad / Tablet package layout fix */
@media (max-width: 900px) and (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }

  .service-card.popular {
    transform: none;
  }

  .service-card {
    padding: 1.7rem 1.6rem;
  }
}
/* Center the 3rd package on tablet */
@media (max-width: 900px) and (min-width: 600px) {
  .services-grid .service-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
  }
}
/* =========================
   Contact form
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.contact-benefits {
  margin-top: 1rem;
  list-style: none;
}

.contact-benefits li {
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #1e3a8a;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 110px;
}

.btn-full {
  width: 100%;
}

.contact-trust {
  font-size: 0.8rem;
  margin-top: 0.7rem;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------
   Siteflowa US overrides
   ------------------------------ */

/* Hero should be full-width (no side panel) */
.hero {
  grid-template-columns: 1fr !important;
}

.hero-panel {
  display: none !important;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid #2563eb;
}

.price {
  font-size: 36px;
  font-weight: 800;
  color: #1f3a8a;
  margin: 16px 0;
}

.card-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}


/* Pricing cards polish */
.pricing-section {
  padding: 72px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  margin: 0 auto 26px;
  max-width: 720px;
  color: #51607a;
}

.pricing-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.pricing-card ul {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  color: #2b3a55;
}

.pricing-card ul li::before {
  content: "✓";
  font-weight: 900;
  color: #2563eb;
  margin-top: 1px;
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0f2f89;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.pricing-card .price {
  font-size: 40px;
  font-weight: 900;
  color: #143a8b;
  margin: 14px 0 6px;
}

.pricing-card .price-note {
  color: #51607a;
  font-size: 14px;
  margin-bottom: 8px;
}

/* actions */
.card-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}


/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  border: 1px solid #2563eb;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.btn-secondary {
  background: #fff;
  color: #1f2a44;
  border: 1px solid #d0d7ff;
}

.btn-secondary:hover {
  border-color: #2563eb;
  transform: translateY(-1px);
}

.pricing-billing-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 34px;
  flex-wrap: wrap;
}

.billing-btn {
  border: 1px solid #d0d7ff;
  background: #fff;
  color: #1f2a44;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.billing-btn span {
  font-size: 12px;
  font-weight: 900;
  color: #2563eb;
  margin-left: 6px;
}

.billing-btn.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 12px 26px rgba(37,99,235,.18);
}

.billing-btn.highlight {
  border-color: #2563eb;
}



/* 1) Keep cards away from screen edges */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* If your pricing grid is not inside .container, force safe padding anyway */
.pricing-section {
  padding-left: 20px;
  padding-right: 20px;
}

/* 2) Make the "You save..." line red and sharper */
.pricing-card .price-note {
  color: #dc2626;            /* red */
  font-weight: 800;
}

/* Optional: make it pop slightly more (safe, not too loud) */
.pricing-card .price-note {
  background: rgba(220, 38, 38, 0.08);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
}

/* 3) Fix "Most popular" badge overlapping the plan name */
.pricing-card {
  position: relative;
}

/* Give the card title some breathing room, only needed when badge exists */
.pricing-card.has-badge h3 {
  padding-top: 22px;
}

/* Move badge to top-right so it never crosses the title */
.pricing-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;     /* moved from left to right */
  left: auto;
  z-index: 2;
}
.pricing-note {
  margin-top: 24px;
  text-align: center;
  font-size: 0.95rem;
  color: #475569; /* soft slate */
}
.savings {
  color: #e53935;
  font-weight: 600;
  margin-top: 6px;
}

/* =========================
   Checkout layout (Start page)
========================= */

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    max-width: 100%;
  }
}

.summary-card {
  max-width: 420px;
}

.summary-card .price {
  font-size: 36px;
  margin: 24px 0;
}

.summary-card .btn-large {
  width: 100%;
  text-align: center;
}

.pricing-card.featured {
  border: 1.5px solid rgba(37, 99, 235, 0.6); /* softer blue */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

/* Optional: slimmer footer on checkout */
.checkout-page .site-footer {
  padding: 2rem 0 1rem;
}


.section-title {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  margin-top: 0;
}
