/*
Theme Name: SynligNu
Theme URI: https://synlignu.se
Author: SynligNu
Author URI: https://synlignu.se
Description: Professionellt WordPress-tema för SynligNu – hemsidor och Google-synlighet för lokala företag.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: synlignu
Tags: one-column, custom-menu, featured-images, translation-ready
*/

/* ===== CSS Variables ===== */
:root {
  --background: #fcfdfd;
  --foreground: #1a2332;
  --card: #ffffff;
  --card-foreground: #1a2332;
  --primary: #319e8a;
  --primary-foreground: #ffffff;
  --secondary: #f0f3f6;
  --secondary-foreground: #1a2332;
  --muted: #f0f3f5;
  --muted-foreground: #6b7280;
  --accent: #e8792b;
  --accent-foreground: #ffffff;
  --border: #e5e8ec;
  --input: #e5e8ec;
  --ring: #319e8a;
  --radius: 0.75rem;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
}

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

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

/* ===== Utility Classes ===== */
.container-tight {
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 7rem 4rem;
  }
}

.section-alt {
  background-color: #f5f7f9;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-card {
  background: linear-gradient(145deg, var(--card) 0%, var(--secondary) 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.glass-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(229,232,236,0.5);
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.subtle-grid {
  background-image:
    linear-gradient(rgba(49,158,138,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49,158,138,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.subtle-dots {
  background-image: radial-gradient(rgba(49,158,138,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(252,253,253,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1.5rem;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.site-logo span {
  color: var(--primary);
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--primary);
}

.header-cta {
  display: none;
  align-items: center;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.header-cta:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }
}

/* Mobile menu */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
  background: var(--background);
  border-top: 1px solid var(--border);
}

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

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
}

.mobile-nav .mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--foreground);
  color: var(--background);
}

.footer-inner {
  padding: 4rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--primary);
}

.footer-desc {
  color: rgba(252,253,253,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 20rem;
}

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(252,253,253,0.4);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(252,253,253,0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  font-size: 0.875rem;
  color: rgba(252,253,253,0.6);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(252,253,253,0.1);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(252,253,253,0.3);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(49,158,138,0.08), var(--background), rgba(232,121,43,0.05));
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
}

.hero-blob-1 {
  position: absolute;
  top: 5rem;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(49,158,138,0.06);
  border-radius: 50%;
  filter: blur(100px);
}

.hero-blob-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(232,121,43,0.06);
  border-radius: 50%;
  filter: blur(100px);
}

.hero-content {
  position: relative;
  width: 100%;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: rgba(49,158,138,0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(49,158,138,0.15);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
}

.hero-subtitle {
  margin-top: 2rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(49,158,138,0.15);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: 0 25px 50px -12px rgba(49,158,138,0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: 2px solid var(--border);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: rgba(49,158,138,0.4);
  background: rgba(49,158,138,0.05);
}

.hero-trust {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(49,158,138,0.2);
}

.hero-float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
  border: 1px solid rgba(229,232,236,0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-float-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, rgba(49,158,138,0.2), rgba(232,121,43,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.hero-float-card p:first-of-type {
  font-size: 0.875rem;
  font-weight: 700;
}

.hero-float-card p:last-of-type {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== Grid cards (problems, solutions, etc.) ===== */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid.cols-2 { grid-template-columns: 1fr; }
.cards-grid.cols-3 { grid-template-columns: 1fr; }
.cards-grid.cols-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.problem-card {
  padding: 1.75rem;
  transition: all 0.3s;
  cursor: default;
}

.problem-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.2s;
}

.card-icon.primary-bg {
  background: rgba(49,158,138,0.1);
  color: var(--primary);
}

.card-icon.accent-bg {
  background: rgba(232,121,43,0.1);
  color: var(--accent);
}

.card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.problem-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== Two-column Section ===== */
.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.two-col h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .two-col h2 { font-size: 3rem; }
}

.two-col > div p.desc {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1.125rem;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid rgba(229,232,236,0.5);
  transition: all 0.3s;
}

.solution-item:hover {
  border-color: rgba(49,158,138,0.3);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.solution-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(49,158,138,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.solution-item p {
  font-weight: 500;
  line-height: 1.7;
  padding-top: 0.75rem;
}

/* ===== Packages Section ===== */
.packages-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.package-card {
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  background: var(--card);
  transition: all 0.3s;
}

.package-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.package-card.featured {
  background: linear-gradient(to bottom right, var(--primary), rgba(49,158,138,0.85));
  color: var(--primary-foreground);
  border-color: var(--primary);
  box-shadow: 0 25px 50px -12px rgba(49,158,138,0.25);
  transform: scale(1.04);
  position: relative;
  z-index: 10;
}

.package-card.featured:hover {
  transform: scale(1.04);
}

.package-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.25rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.package-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.package-card .pkg-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

.package-card:not(.featured) .pkg-desc {
  color: var(--muted-foreground);
}

.package-card.featured .pkg-desc {
  opacity: 0.8;
}

.package-price {
  margin-top: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.package-price span {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

.package-card:not(.featured) .package-price {
  color: var(--foreground);
}

.package-items {
  margin-top: 1.5rem;
  list-style: none;
  flex: 1;
}

.package-items li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.package-items li svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.package-card:not(.featured) .package-items li {
  color: var(--muted-foreground);
}

.package-card:not(.featured) .package-items li svg {
  color: var(--primary);
}

.package-card.featured .package-items li {
  opacity: 0.9;
}

.package-cta {
  display: block;
  text-align: center;
  margin-top: 2rem;
  padding: 0.875rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.package-card:not(.featured) .package-cta {
  background: var(--primary);
  color: var(--primary-foreground);
}

.package-card.featured .package-cta {
  background: var(--accent);
  color: var(--accent-foreground);
}

.package-cta:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* ===== Steps Section ===== */
.step-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem 3rem;
  border: 1px solid rgba(229,232,236,0.5);
  transition: all 0.3s;
}

.step-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.step-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .step-inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

.step-num {
  font-size: 3.75rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: rgba(26,35,50,0.1);
}

@media (min-width: 1024px) {
  .step-num { font-size: 4.5rem; }
}

.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  color: var(--primary);
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
}

.step-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .step-card h3 { font-size: 1.5rem; }
}

.step-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1.125rem;
}

/* ===== Trust / Payment Section ===== */
.trust-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(49,158,138,0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.trust-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

.trust-item {
  text-align: center;
  padding: 1.5rem;
}

.trust-item .trust-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(49,158,138,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.trust-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== Portfolio ===== */
.portfolio-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.portfolio-card:hover {
  border-color: rgba(49,158,138,0.3);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.portfolio-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.portfolio-card:hover h3 {
  color: var(--primary);
}

.portfolio-card .port-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.portfolio-card .port-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

/* ===== About Section ===== */
.about-values {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .about-values { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  text-align: center;
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.value-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(49,158,138,0.15), rgba(232,121,43,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.value-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

.contact-sidebar-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.contact-sidebar-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.contact-sidebar-card .card-header .icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(49,158,138,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-sidebar-card .card-header p {
  font-weight: 700;
  font-size: 0.875rem;
}

.contact-sidebar-card > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-cta-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, rgba(49,158,138,0.08), rgba(49,158,138,0.03));
  border: 1px solid rgba(49,158,138,0.1);
}

.contact-cta-card p:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-cta-card p:last-child {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.contact-form {
  background: var(--card);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

@media (min-width: 1024px) {
  .contact-form { padding: 2.5rem; }
}

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .form-row.two-cols { grid-template-columns: 1fr 1fr; }
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--input);
  background: var(--background);
  color: var(--foreground);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px var(--ring);
}

.form-group textarea {
  resize: none;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  box-shadow: 0 20px 25px -5px rgba(49,158,138,0.15);
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* ===== CTA Sections ===== */
.cta-dark {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, var(--foreground), rgba(26,35,50,0.9));
  color: var(--background);
  padding: 3rem 5rem;
  text-align: center;
}

.cta-dark .cta-blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(49,158,138,0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.cta-dark h2 {
  position: relative;
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .cta-dark h2 { font-size: 2.25rem; }
}

.cta-dark p {
  position: relative;
  margin-top: 1rem;
  opacity: 0.7;
  font-size: 1.125rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-dark .cta-buttons {
  position: relative;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-dark .cta-buttons { flex-direction: row; }
}

.cta-dark .btn-primary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
}

.cta-dark .btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(252,253,253,0.2);
  font-weight: 600;
  transition: all 0.3s;
  background: transparent;
}

.cta-dark .btn-outline-light:hover {
  border-color: rgba(252,253,253,0.4);
}

/* ===== Guarantee Section ===== */
.guarantee-section {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.guarantee-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(49,158,138,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.guarantee-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .guarantee-section h2 { font-size: 2.25rem; }
}

.guarantee-section p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.guarantee-section .strong-text {
  margin-top: 1rem;
  color: var(--foreground);
  font-weight: 600;
  font-size: 1.125rem;
}

/* ===== Page Header (generic) ===== */
.page-header {
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(49,158,138,0.08), var(--background), rgba(232,121,43,0.05));
}

.page-header-blob {
  position: absolute;
  top: 5rem;
  right: 0;
  width: 400px;
  height: 400px;
  background: rgba(49,158,138,0.05);
  border-radius: 50%;
  filter: blur(100px);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .page-header h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .page-header h1 { font-size: 3.75rem; }
}

.page-header p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Initially hidden for animation */
[data-animate] {
  opacity: 0;
}

/* ===== Responsive adjustments ===== */
@media (max-width: 767px) {
  .cta-dark {
    padding: 2rem 1.5rem;
  }
  
  .trust-card {
    padding: 2rem 1.5rem;
  }
}

/* ===== SVG Icons inline ===== */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }

/* ===== Toast notification ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 9999;
  animation: fadeUp 0.3s ease-out;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.toast.success {
  background: var(--primary);
  color: var(--primary-foreground);
}

.toast.error {
  background: #dc2626;
  color: white;
}

/* ===== Dropdown / Submenu ===== */
.desktop-nav li {
  position: relative;
  list-style: none;
}

.desktop-nav ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  z-index: 100;
  margin: 0;
}

.desktop-nav li:hover > ul.sub-menu {
  display: block;
}

.desktop-nav ul.sub-menu li {
  display: block;
}

.desktop-nav ul.sub-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.desktop-nav ul.sub-menu a:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* Nested submenus */
.desktop-nav ul.sub-menu ul.sub-menu {
  left: 100%;
  top: 0;
}

/* Mobile submenu */
.mobile-nav li {
  list-style: none;
}

.mobile-nav ul.sub-menu {
  padding-left: 1rem;
  margin: 0;
}

.mobile-nav ul.sub-menu a {
  font-size: 0.9375rem;
  opacity: 0.8;
}

/* ===== wp_nav_menu list reset ===== */
.desktop-nav,
.mobile-nav,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav li,
.footer-links li {
  display: inline-block;
}

.mobile-nav li {
  display: block;
}

.footer-links li {
  display: block;
}

/* Header static option */
.site-header.static {
  position: relative;
}

/* Contact no-sidebar */
.contact-grid.no-sidebar {
  grid-template-columns: 1fr;
}

/* Widget styles */
.widget {
  margin-bottom: 1.5rem;
}

.widget-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

/* ===== FAQ / Accordion ===== */
.sn-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sn-faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.sn-faq-item[open] {
  border-color: var(--primary);
}

.sn-faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sn-faq-question::-webkit-details-marker { display: none; }
.sn-faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform 0.2s; }
.sn-faq-item[open] .sn-faq-question::after { content: '−'; }

.sn-faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== Slider ===== */
.sn-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 400px;
}

.sn-slide {
  display: none;
  position: relative;
  min-height: 400px;
  align-items: center;
  justify-content: center;
}

.sn-slide.active { display: flex; }

.sn-slide-overlay {
  position: absolute;
  inset: 0;
  background: #000;
}

.sn-slide-content {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 600px;
}

.sn-slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sn-slider-prev,
.sn-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.sn-slider-prev:hover,
.sn-slider-next:hover { background: #fff; }
.sn-slider-prev { left: 1rem; }
.sn-slider-next { right: 1rem; }

/* ===== Partners ===== */
.sn-partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
  padding: 2rem 0;
}

.sn-partner-item {
  opacity: 0.6;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.sn-partner-item:hover { opacity: 1; }

/* ===== Gallery ===== */
.sn-gallery {
  display: grid;
  gap: 1rem;
}

.sn-gallery.cols-2 { grid-template-columns: repeat(2, 1fr); }
.sn-gallery.cols-3 { grid-template-columns: repeat(3, 1fr); }
.sn-gallery.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 640px) {
  .sn-gallery.cols-3,
  .sn-gallery.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

.sn-gallery-item {
  overflow: hidden;
  border-radius: 0.75rem;
  transition: transform 0.3s;
}

.sn-gallery-item:hover { transform: scale(1.03); }

/* ===== Counter ===== */
.sn-counter {
  text-align: center;
  padding: 1.5rem;
}

.sn-counter-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
}

.sn-counter-text {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* ===== Countdown ===== */
.sn-countdown {
  text-align: center;
  padding: 2rem;
  background: var(--secondary);
  border-radius: 1rem;
}

.sn-countdown-timer {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.sn-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sn-cd-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
}

.sn-cd-unit span:last-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

/* ===== Landing page ===== */
body.landing-page {
  padding-top: 0;
}

body.blank-page {
  padding-top: 0;
}
