/* ===================================
   Sustainability Today - Matching Original Site
   =================================== */

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

:root {
  /* Primary - Warm Amber/Gold */
  --primary: #d97706;
  --primary-hover: #b45309;
  --primary-light: #fbbf24;
  --primary-dark: #92400e;

  /* Secondary - Forest Green */
  --secondary: #059669;
  --secondary-hover: #047857;
  --secondary-dark: #065f46;

  /* Action buttons */
  --btn-primary: #d97706;
  --btn-primary-hover: #b45309;
  --btn-secondary: #059669;
  --btn-secondary-hover: #047857;

  /* Legacy blue - now amber */
  --btn-blue: #d97706;
  --btn-blue-hover: #b45309;

  /* Text */
  --text-dark: #1f2937;
  --text-body: #374151;
  --text-light: #6b7280;
  --text-muted: #9ca3af;

  /* Backgrounds */
  --bg-light: #f9fafb;
  --bg-white: #fff;
  --bg-warm: #fffbeb;

  /* Borders */
  --border: #d1d5db;
  --border-light: #e5e7eb;

  /* Effects */
  --shadow: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);

  /* Radius */
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-white);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

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

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

/* ===================================
   Layout
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   Header / Navigation
   =================================== */

.navbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}

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

.logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-menu > li > a {
  display: block;
  padding: 10px 16px;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.nav-menu > li > a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
  list-style: none;
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 14px;
}

.dropdown a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

/* Nav Contact Button */
.btn-nav-contact {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary);
  color: white !important;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-nav-contact:hover {
  background: var(--primary-dark);
  color: white !important;
  transform: translateY(-1px);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--secondary);
  color: white !important;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  border: 2px solid var(--secondary);
}

.nav-phone:hover {
  background: white;
  color: var(--secondary) !important;
  border-color: var(--secondary);
  transform: translateY(-1px);
}

.nav-phone:hover .phone-icon {
  stroke: var(--secondary);
  fill: var(--secondary);
}

.nav-phone-icon {
  width: 18px;
  height: 18px;
}

/* Phone icon SVG */
.phone-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.lang-btn.active {
  color: var(--primary);
  background: rgba(114, 63, 241, 0.1);
}

.lang-divider {
  color: var(--text-muted);
  font-size: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

.btn-admin {
  background: var(--primary) !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: var(--radius) !important;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.5) 100%);
  overflow: hidden;
  padding: 60px 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: white;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h3 {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.5;
}

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

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

.hero-image {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Floating decorative elements */
.hero-decoration {
  position: absolute;
  pointer-events: none;
}

.hero-decoration.dot-1 {
  top: 10%;
  left: -30px;
  width: 26px;
  height: 26px;
}

.hero-decoration.dot-2 {
  top: 30%;
  right: -20px;
  width: 36px;
  height: 36px;
}

.hero-decoration.dot-3 {
  bottom: 20%;
  left: -40px;
  width: 36px;
  height: 36px;
}

.hero-decoration.badge-1 {
  top: 5%;
  right: 10%;
  width: 88px;
  height: 88px;
  animation: float 3s ease-in-out infinite;
}

.hero-decoration.badge-2 {
  bottom: 10%;
  right: -20px;
  width: 102px;
  height: 102px;
  animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Legacy support for old hero structure */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* ===================================
   Buttons
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--btn-blue);
  color: white;
}

.btn-primary:hover {
  background: var(--btn-blue-hover);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--text-dark);
}

.btn-secondary {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--border-light);
}

.btn-purple {
  background: var(--primary);
  color: white;
}

.btn-purple:hover {
  background: var(--primary-hover);
  color: white;
}

/* ===================================
   Services Section
   =================================== */

.services {
  padding: 80px 0;
  background: var(--bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================================
   About Preview
   =================================== */

.about-preview {
  padding: 80px 0;
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  object-fit: cover;
}

/* ===================================
   Trust Badges
   =================================== */

.trust-badges {
  padding: 60px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.badges-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.badge-icon {
  font-size: 32px;
  color: #f59e0b;
}

.badge-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===================================
   Latest Articles
   =================================== */

.latest-articles {
  padding: 80px 0;
  background: var(--bg-white);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.article-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.article-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-light);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 24px;
}

.article-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(114, 63, 241, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 12px;
}

.article-content h3,
.article-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}

.article-content h3 a,
.article-content h2 a {
  color: inherit;
}

.article-content h3 a:hover,
.article-content h2 a:hover {
  color: var(--primary);
}

.article-content > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.read-more:hover {
  gap: 8px;
}

.view-all {
  text-align: center;
}

.no-articles {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

/* ===================================
   Newsletter
   =================================== */

.newsletter {
  padding: 80px 0;
  background: var(--bg-light);
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 50px 40px;
  text-align: center;
}

.newsletter-box h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.newsletter-box > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input:focus {
  border-color: var(--btn-blue);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--btn-blue);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: var(--btn-blue-hover);
}

.newsletter-message {
  margin-top: 16px;
  font-size: 14px;
}

/* Floating Newsletter Banner */
.newsletter-floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3a2f 0%, #1a2f25 100%);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-floating.show {
  transform: translateY(0);
}

.newsletter-floating-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}

.newsletter-floating-close:hover {
  opacity: 1;
}

.newsletter-floating-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-floating-text {
  flex: 1;
  min-width: 200px;
}

.newsletter-floating-text h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.newsletter-floating-text p {
  font-size: 14px;
  opacity: 0.85;
  margin: 0;
}

.newsletter-floating-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 300px;
}

.newsletter-floating-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
}

.newsletter-floating-form input:focus {
  outline: 2px solid var(--primary);
}

.newsletter-floating-form button {
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-floating-form button:hover {
  background: var(--primary-dark);
}

.newsletter-floating .newsletter-message {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .newsletter-floating-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-floating-form {
    width: 100%;
    flex-direction: column;
  }
}

/* ===================================
   Page Header
   =================================== */

.page-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 60px 0;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.breadcrumb a {
  color: white;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-header > .container > p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===================================
   Blog Listing
   =================================== */

.blog-listing {
  padding: 60px 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}

.pagination-number,
.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-dark);
  transition: all 0.2s;
}

.pagination-number:hover,
.pagination-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination-number.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ===================================
   Single Article
   =================================== */

.article-full {
  padding: 60px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
}

.article-header-content {
  margin-bottom: 32px;
}

.article-header-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 16px 0 20px;
}

.article-header-content .article-meta {
  display: flex;
  gap: 24px;
  color: var(--text-light);
  font-size: 14px;
  border: none;
  padding: 0;
}

.article-header-content .article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-featured-image {
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  display: block;
}

.article-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
}

.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 16px;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 32px 0 12px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
  margin: 20px 0;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
}

/* Article Tables */
.article-body table,
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.article-body table th,
.article-table th {
  background: var(--bg-light);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border);
}

.article-body table td,
.article-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
}

.article-body table tr:last-child td,
.article-table tr:last-child td {
  border-bottom: none;
}

.article-body table tr:hover td,
.article-table tr:hover td {
  background: #fafafa;
}

/* Article Video Embed */
.article-body .video-wrapper,
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 30px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-body .video-wrapper iframe,
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Article CTA Button */
.article-body .cta-button-wrapper,
.cta-button-wrapper {
  text-align: center;
  margin: 40px 0;
}

.article-body .cta-button,
.cta-button {
  display: inline-block;
  padding: 16px 36px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.article-body .cta-button:hover,
.cta-button:hover {
  background: var(--primary-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.4);
}

.cta-button-secondary {
  background: var(--secondary) !important;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3) !important;
}

.cta-button-secondary:hover {
  background: var(--secondary-hover) !important;
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4) !important;
}

.cta-button-outline {
  background: transparent !important;
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  box-shadow: none !important;
}

.cta-button-outline:hover {
  background: var(--primary) !important;
  color: white !important;
}

/* Article Reference Card */
.article-body .article-ref-card,
.article-ref-card {
  display: block;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
  text-decoration: none;
  transition: all 0.2s;
}

.article-body .article-ref-card:hover,
.article-ref-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.article-body .article-ref-card strong,
.article-ref-card strong {
  color: var(--text-dark);
  font-size: 16px;
}

.article-body .article-ref-card small,
.article-ref-card small {
  color: var(--primary);
  font-weight: 500;
}

/* Article Images with Figure */
.article-body figure {
  margin: 24px 0;
}

.article-body figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.article-body figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

.article-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-buttons > span {
  font-weight: 600;
  color: var(--text-dark);
}

.share-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  color: white;
  font-size: 13px;
  font-weight: 500;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }

.share-btn:hover {
  opacity: 0.9;
  color: white;
}

/* Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-section {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.related-articles {
  list-style: none;
}

.related-articles li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.related-articles li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-articles a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.4;
}

.related-articles img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.related-articles a:hover {
  color: var(--primary);
}

.newsletter-sidebar p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.newsletter-form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form-sidebar input {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
}

.newsletter-form-sidebar input:focus {
  outline: none;
  border-color: var(--btn-blue);
}

/* ===================================
   About Page
   =================================== */

.about-content-section {
  padding: 60px 0;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.about-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.mission-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.mission-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--primary);
}

.mission-icon svg {
  width: 100%;
  height: 100%;
}

.mission-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.mission-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* About Page Highlight Section */
.about-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px;
  background: var(--bg-warm);
  border-radius: var(--radius-xl);
}

.highlight-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.highlight-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.highlight-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.lead {
  font-size: 20px;
  line-height: 1.7;
}

/* Page Header with Background */
.page-header-bg {
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  align-items: center;
}

/* ===================================
   Products Page
   =================================== */

.products-section {
  padding: 60px 0;
}

.products-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  color: var(--primary);
}

.product-icon svg {
  width: 100%;
  height: 100%;
}

.product-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.product-card > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
}

.product-features li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-body);
  font-size: 14px;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* Custom Solutions Grid */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.custom-item {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.custom-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--secondary);
}

.custom-icon svg {
  width: 100%;
  height: 100%;
}

.custom-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.custom-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Product Actions (multiple buttons) */
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-actions .btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.product-actions .btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.product-actions .btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Solutions Section */
.solutions-section {
  margin-top: 60px;
}

.solution-highlight {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #fef3c7 100%);
  border-radius: var(--radius-xl);
  padding: 50px;
  margin-top: 30px;
}

.solution-highlight-alt {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.solution-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.solution-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.solution-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary);
}

.solution-highlight-alt .solution-icon svg {
  color: var(--secondary);
}

.solution-text h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.solution-text > p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
}

.feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.solution-highlight-alt .feature-item svg {
  color: var(--secondary);
}

/* Solution Detail Pages */
.solution-detail-header {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #fef3c7 100%);
}

.solution-detail-header.green {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.solution-detail-header .container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.solution-detail-info {
  flex: 1;
}

.solution-detail-info h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.solution-detail-info .tagline {
  font-size: 20px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 28px;
}

.solution-detail-logo {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-detail-logo svg {
  width: 100%;
  height: 100%;
}

.solution-detail-logo.agora-logo {
  width: 220px;
  height: 220px;
  padding: 15px;
  background: transparent;
  box-shadow: none;
}

.solution-detail-logo.agora-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-detail-content {
  padding: 60px 0;
}

.solution-detail-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 20px;
}

.solution-detail-content h2:first-child {
  margin-top: 0;
}

.solution-detail-content p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 30px 0;
}

.feature-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.feature-card svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-card.green svg {
  color: var(--secondary);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

.solution-cta {
  background: var(--bg-light);
  padding: 50px;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: 50px;
}

.solution-cta h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.solution-cta p {
  max-width: 600px;
  margin: 0 auto 24px;
}

@media (max-width: 768px) {
  .solution-content {
    flex-direction: column;
    text-align: center;
  }

  .solution-icon {
    margin: 0 auto;
  }

  .solution-features {
    grid-template-columns: 1fr;
  }

  .feature-item {
    justify-content: center;
  }

  .solution-detail-header .container {
    flex-direction: column;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .product-actions .btn {
    width: 100%;
  }
}

.about-services-detail h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-detail-item {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.service-detail-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-detail-item > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-detail-item ul {
  list-style: none;
}

.service-detail-item li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
}

.service-detail-item li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), #9166f5);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-content .btn {
  background: white;
  color: var(--primary);
}

.cta-content .btn:hover {
  background: var(--bg-light);
}

/* ===================================
   Contact Page
   =================================== */

.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 15px;
  color: var(--text-light);
}

.contact-form-container {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-container h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--btn-blue);
}

.contact-form .checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: normal;
  cursor: pointer;
}

.contact-form .checkbox-group input {
  width: auto;
  margin-top: 3px;
  transform: scale(1.2);
}

.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 15px;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ===================================
   Error Pages
   =================================== */

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.error-content {
  text-align: center;
}

.error-content h1 {
  font-size: 120px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.error-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.error-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* ===================================
   Footer
   =================================== */

.footer {
  background: linear-gradient(135deg, #1e3a2f 0%, #1a2f25 100%);
  color: white;
  padding: 60px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 45px;
  width: auto;
}

.footer-about p {
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-section p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.7;
}

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

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #9ca3af;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: white;
}

.contact-info li {
  color: #9ca3af;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s;
}

.social-links a:hover {
  background: var(--primary);
}

.footer-badges {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badges img {
  height: 50px;
  width: auto;
}

.footer-contact li {
  color: #9ca3af;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: #9ca3af;
}

/* ===================================
   Cookie Banner
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3a2f 0%, #1a2f25 100%);
  color: white;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cookie-banner-text p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--primary);
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.cookie-btn-accept {
  background: var(--primary);
  color: white;
}

.cookie-btn-accept:hover {
  background: var(--primary-hover);
}

.cookie-btn-reject {
  background: transparent;
  color: white;
  border: 1px solid #6b7280;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #9ca3af;
  border: none;
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: white;
}

/* ===================================
   Landing Pages (Google Ads)
   =================================== */

.landing-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
}

.landing-hero-content {
  max-width: 800px;
}

.landing-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.landing-hero .subtitle {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 16px;
}

.landing-hero .lead {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.landing-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-lg svg {
  margin-right: 8px;
}

/* Landing Trust Section */
.landing-trust {
  background: var(--bg-warm);
  padding: 30px 0;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.trust-item span {
  font-weight: 600;
  color: var(--text-dark);
}

/* Landing Services */
.landing-services {
  padding: 80px 0;
  background: var(--bg-white);
}

.landing-services h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-landing-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: all 0.3s;
}

.service-landing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.service-landing-card .service-icon {
  width: 56px;
  height: 56px;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-landing-card .service-icon svg {
  width: 100%;
  height: 100%;
}

.service-landing-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-landing-card > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-landing-card ul {
  list-style: none;
}

.service-landing-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-body);
  font-size: 14px;
}

.service-landing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* Landing Process */
.landing-process {
  padding: 80px 0;
  background: var(--bg-light);
}

.landing-process h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-light);
}

/* Landing Benefits */
.landing-benefits {
  padding: 80px 0;
  background: var(--bg-white);
}

.landing-benefits h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  color: var(--primary);
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Landing Audience */
.landing-audience {
  padding: 80px 0;
  background: var(--bg-light);
}

.landing-audience h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.audience-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.audience-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.audience-item p {
  font-size: 14px;
  color: var(--text-light);
}

/* Landing CTA Section */
.landing-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #b45309 100%);
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

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

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-buttons .btn-primary:hover {
  background: var(--bg-light);
}

.cta-buttons .btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===================================
   WhatsApp Button
   =================================== */

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
  z-index: 1000;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  color: white;
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 1024px) {
  .services-grid,
  .articles-grid,
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-top: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-menu > li > a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 20px;
    background: transparent;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text h3 {
    font-size: 18px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-decoration {
    display: none;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .services-grid,
  .articles-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .social-links {
    justify-content: center;
  }

  .badges-grid {
    gap: 40px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .section-header h2,
  .about-content h2,
  .about-intro h2,
  .about-services-detail h2,
  .cta-content h2 {
    font-size: 26px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-text {
    min-width: auto;
  }

  .cookie-banner-buttons {
    justify-content: center;
    width: 100%;
  }

  .footer-badges {
    justify-content: center;
  }
}
