/* Verdiso Global Stylesheet */
/* Colors: Dark Green #1B4D3E, Medium Green #2D7A5F, Light Green #E8F5E9, Gold #C8A84E, Dark Text #1a1a2e, Light Gray #f8f9fa */

:root {
  --green-dark: #1B4D3E;
  --green-medium: #2D7A5F;
  --green-light: #E8F5E9;
  --green-hero: linear-gradient(135deg, #1B4D3E 0%, #2D7A5F 100%);
  --gold: #C8A84E;
  --gold-light: #d4af37;
  --text-dark: #1a1a2e;
  --text-medium: #4a4a5a;
  --text-light: #6b7280;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-card: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Typography */
h1 { font-size: 3rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; }
p { color: var(--text-medium); line-height: 1.7; }

/* ============ NAVIGATION ============ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; flex-direction: column;
}
.nav-brand-name {
  font-size: 1.75rem; font-weight: 800; color: var(--green-dark);
  letter-spacing: -0.02em;
}
.nav-brand-tagline {
  font-size: 0.7rem; color: var(--gold); font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--text-medium);
}
.nav-links a:hover { color: var(--green-dark); }
.nav-cta {
  background: var(--green-dark) !important; color: white !important;
  padding: 10px 24px !important; border-radius: var(--radius-sm) !important;
  font-weight: 600 !important; font-size: 0.95rem !important;
}
.nav-cta:hover { background: var(--green-medium) !important; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text-dark);
  margin: 6px 0; transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  background: var(--green-hero);
  color: white; text-align: center;
  padding: 100px 24px 80px;
}
.hero h1 { color: white; margin-bottom: 24px; font-size: 3.5rem; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.2rem; max-width: 700px; margin: 0 auto 48px; }

.stats-bar {
  display: flex; justify-content: center; gap: 48px;
  background: rgba(255,255,255,0.1); border-radius: var(--radius);
  padding: 32px 48px; max-width: 800px; margin: 0 auto 48px;
  backdrop-filter: blur(10px);
}
.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--gold); display: block; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

.hero-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--green-dark); color: white; border-color: var(--green-dark);
}
.btn-primary:hover { background: var(--green-medium); border-color: var(--green-medium); }
.btn-secondary {
  background: transparent; color: white; border-color: rgba(255,255,255,0.4);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-outline {
  background: transparent; color: var(--green-dark); border-color: var(--green-dark);
}
.btn-outline:hover { background: var(--green-dark); color: white; }
.btn-gold {
  background: var(--gold); color: white; border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; }

/* ============ CARDS ============ */
.card-grid {
  display: grid; gap: 24px;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px; background: var(--green-light);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 16px;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.95rem; }

/* ============ PROCESS / STEPS ============ */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  counter-reset: step;
}
.step {
  text-align: center; position: relative; counter-increment: step;
}
.step::before {
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-dark); color: white;
  font-weight: 700; font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.9rem; }

/* ============ FAQ / ACCORDION ============ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; padding: 20px 24px; background: none; border: none;
  font-size: 1rem; font-weight: 600; text-align: left;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: var(--text-dark); font-family: var(--font-main);
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--green-dark); transition: var(--transition); }
.faq-item.active .faq-question::after { content: '-'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 500px; padding: 0 24px 20px; }

/* ============ CONTACT FORM ============ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.9rem;
  margin-bottom: 6px; color: var(--text-dark);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 1rem;
  font-family: var(--font-main); transition: var(--transition);
  background: var(--bg-white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(27,77,62,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--green-hero); color: white;
  text-align: center; padding: 80px 24px;
}
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.1rem; }

/* ============ TABLE ============ */
.table-wrapper { overflow-x: auto; }
table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card); border-radius: var(--radius);
  overflow: hidden;
}
th, td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); }
th {
  background: var(--green-dark); color: white;
  font-weight: 600; font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 0.05em;
}
td { font-size: 0.95rem; color: var(--text-medium); }
tr:hover td { background: var(--green-light); }

/* ============ PRICING ============ */
.pricing-card {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px;
  text-align: center; transition: var(--transition); position: relative;
}
.pricing-card.featured {
  border-color: var(--green-dark); transform: scale(1.05);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: white; padding: 4px 16px;
  border-radius: 20px; font-size: 0.8rem; font-weight: 600;
}
.pricing-price {
  font-size: 2.5rem; font-weight: 800; color: var(--green-dark);
  margin: 16px 0 8px;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.pricing-features { text-align: left; margin: 24px 0; }
.pricing-features li {
  padding: 8px 0; padding-left: 28px; position: relative;
  font-size: 0.95rem; color: var(--text-medium);
}
.pricing-features li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--green-medium); font-weight: 700;
}

/* ============ BLOG ============ */
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-card-image {
  height: 200px; background: var(--green-hero);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 2rem;
}
.blog-card-body { padding: 24px; }
.blog-card-meta {
  font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px;
  display: flex; gap: 16px;
}
.blog-card-body h3 { margin-bottom: 12px; }
.blog-card-body h3 a:hover { color: var(--green-medium); }
.blog-card-body p { font-size: 0.95rem; margin-bottom: 16px; }
.read-more { color: var(--green-dark); font-weight: 600; font-size: 0.95rem; }
.read-more:hover { color: var(--green-medium); }

/* Blog post */
.blog-post { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.blog-post-header { margin-bottom: 40px; }
.blog-post-meta {
  font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.blog-post-tag {
  background: var(--green-light); color: var(--green-dark);
  padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
}
.blog-post h1 { font-size: 2.5rem; margin-bottom: 16px; }
.blog-post-content h2 { font-size: 1.75rem; margin: 40px 0 16px; }
.blog-post-content h3 { font-size: 1.35rem; margin: 32px 0 12px; }
.blog-post-content p { margin-bottom: 20px; }
.blog-post-content ul, .blog-post-content ol {
  margin: 16px 0 24px 24px; color: var(--text-medium);
}
.blog-post-content li { margin-bottom: 8px; line-height: 1.7; }
.blog-post-content blockquote {
  border-left: 4px solid var(--green-dark); padding: 16px 24px;
  background: var(--green-light); margin: 24px 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}
.blog-post-content .callout {
  background: #FFF8E1; border: 1px solid #FFE082; border-radius: var(--radius-sm);
  padding: 20px 24px; margin: 24px 0;
}
.blog-post-content .callout-title { font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }

/* ============ FOOTER ============ */
.footer {
  background: var(--green-dark); color: rgba(255,255,255,0.8);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .nav-brand-name { color: white; }
.footer-brand .nav-brand-tagline { color: var(--gold); }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer h4 {
  color: white; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 16px;
}
.footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer a:hover { color: white; }
.footer li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.footer-entity { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ============ BREADCRUMB ============ */
.breadcrumb { padding: 16px 0; font-size: 0.9rem; color: var(--text-light); }
.breadcrumb a { color: var(--green-dark); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ============ PAGE HEADER ============ */
.page-header {
  background: var(--green-hero); color: white;
  padding: 60px 24px; text-align: center;
}
.page-header h1 { color: white; margin-bottom: 12px; font-size: 2.75rem; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ============ LEGAL PAGES ============ */
.legal-content { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.legal-content h1 { margin-bottom: 8px; }
.legal-content .last-updated { color: var(--text-light); margin-bottom: 40px; font-size: 0.95rem; }
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--green-dark); }
.legal-content h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 20px 24px; }
.legal-content li { margin-bottom: 6px; color: var(--text-medium); list-style: disc; }

/* ============ COMPARISON TABLE ============ */
.comparison-highlight { background: var(--green-light) !important; font-weight: 600; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--text-dark); color: white;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.cookie-banner p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
.cookie-banner-buttons { display: flex; gap: 12px; }
.cookie-btn {
  padding: 8px 20px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.85rem; cursor: pointer; border: none;
}
.cookie-accept { background: var(--green-dark); color: white; }
.cookie-decline { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .hero h1 { font-size: 2.5rem; }
  .hero { padding: 60px 24px 50px; }
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { gap: 24px; padding: 24px; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 640px) {
  h1 { font-size: 1.75rem; }
  .hero h1 { font-size: 2rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-white); padding: 24px;
    box-shadow: var(--shadow-lg); border-top: 1px solid var(--border);
  }
  .card-grid-3, .card-grid-2, .card-grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
