/* =========================
   GLOBAL RESET + TOKENS
   ========================= */

:root {
  --color-red: #e10600;
  --color-red-dark: #c70500;
  --color-text: #1f2937;
  --color-text-soft: #5b6472;
  --color-border: #ececec;
  --color-bg-soft: #fafafa;
  --color-white: #ffffff;
  --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 14px 28px rgba(0, 0, 0, 0.05);
  --radius-md: 14px;
  --radius-lg: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-white);
  color: #333;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a,
button,
input,
textarea {
  transition: all 0.25s ease;
}

/* =========================
   LAYOUT
   ========================= */

.container {
  width: min(95%, 1440px);
  margin: 0 auto;
}

section {
  padding: 96px 0;
  text-align: center;
}

.page-hero,
.home-hero {
  padding: 100px 0 90px;
}

.section-block {
  padding: 80px 0;
  background: var(--color-white);
}

.section-narrow,
.band-content {
  width: min(92%, 980px);
  margin: 0 auto;
  text-align: center;
}

.section-heading {
  text-align: center;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin-bottom: 0;
}

/* =========================
   TYPOGRAPHY
   ========================= */

h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--color-text);
}

p {
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.eyebrow {
  color: var(--color-red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-hero {
  background: var(--color-white);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 18px;
}

.page-hero-text {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

/* =========================
   BUTTONS + LINKS
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn:hover {
  background: var(--color-red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
  background: #f8f8f8;
  color: var(--color-text);
}

.text-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--color-red);
  text-decoration: none;
  font-weight: 700;
}

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

/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}

.header-row {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  padding-top: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #4b5563;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-red);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-red);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  margin: 6px 0;
}

/* =========================
   SHARED CARD SYSTEM
   ========================= */

.card,
.service-card,
.audience-card,
.value-card,
.blog-card,
.blog-preview-card,
.sidebar-card,
.contact-info-card,
.contact-form-card,
.cta-panel-box,
.hero-panel-card,
.about-highlight,
.hero-card,
.post-article {
  background: var(--color-white);
  border: 1px solid #e7e7e7;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card,
.hero-card {
  padding: 20px;
}

.service-card:hover,
.audience-card:hover,
.value-card:hover,
.blog-card:hover,
.blog-preview-card:hover,
.sidebar-card:hover,
.contact-info-card:hover,
.contact-form-card:hover,
.hero-panel-card:hover,
.about-highlight:hover,
.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: #e4d6d6;
}

/* =========================
   SIMPLE HERO (legacy)
   ========================= */

.hero {
  background: #f5f5f5;
  padding: 80px 0;
}

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

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-text span {
  color: var(--color-red);
}

.hero-text p {
  margin: 20px 0;
}

.hero-card {
  padding: 25px;
  border-radius: 12px;
}

.card-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ok {
  color: green;
}

.warn {
  color: var(--color-red);
}

/* =========================
   GRID HELPERS
   ========================= */

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

.services-grid,
.values-grid,
.audience-grid,
.blog-preview-grid {
  display: grid;
  gap: 24px;
}

.services-grid,
.values-grid,
.audience-grid,
.blog-preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* =========================
   SERVICES
   ========================= */

.services-detail,
.values-section,
.home-blog-preview,
.cta-panel {
  background: var(--color-bg-soft);
}

.service-card,
.audience-card,
.value-card,
.blog-preview-card {
  padding: 28px 24px;
  text-align: left;
}

.service-card h3,
.audience-card h3,
.value-card h3,
.blog-preview-card h3 {
  margin-bottom: 12px;
}

.service-card p,
.value-card p,
.blog-preview-card p {
  line-height: 1.8;
}

.section-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4b5563;
}

.section-band {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  padding: 78px 0;
}

.band-content h2 {
  margin-bottom: 16px;
}

.band-content p:last-child {
  line-height: 1.8;
}

.audience-card ul {
  padding-left: 18px;
  color: var(--color-text-soft);
  line-height: 1.9;
}

.cta-panel-box {
  width: min(92%, 1100px);
  margin: 0 auto;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-panel-box p {
  max-width: 650px;
  margin: 0 auto 22px;
  line-height: 1.8;
}

/* =========================
   ABOUT
   ========================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.about-text {
  text-align: left;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 18px;
}

.about-text p {
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-highlight {
  padding: 28px 24px;
  text-align: left;
  border-radius: 16px;
}

.about-highlight h3 {
  margin-bottom: 20px;
}

.highlight-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid #f1f1f1;
}

.highlight-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.highlight-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff1f1;
  color: var(--color-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.highlight-item h4 {
  color: var(--color-text);
  margin-bottom: 6px;
}

.highlight-item p {
  line-height: 1.7;
}

/* =========================
   CONTACT
   ========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-info-card,
.contact-form-card {
  padding: 32px 28px;
  border-radius: 16px;
  height: 100%;
}

.contact-info-card,
.contact-form-card,
.contact-form-card h2,
.contact-info-card h2,
.contact-form {
  text-align: left;
}

.contact-intro,
.home-hero-description,
.post-summary,
.section-lead,
.blog-post-item p,
.featured-post p {
  font-size: 1.02rem;
}

.contact-intro {
  line-height: 1.8;
  margin-bottom: 26px;
}

.contact-item {
  padding: 18px 0;
  border-top: 1px solid #f1f1f1;
}

.contact-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-item h3 {
  margin-bottom: 6px;
}

.contact-item p {
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-item a {
  color: var(--color-red);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  margin-top: 12px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  color: var(--color-text);
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.08);
}

.contact-form .btn,
button.btn {
  cursor: pointer;
  border: 0;
}

/* =========================
   BLOG LIST
   ========================= */

.blog-layout-section {
  background: var(--color-white);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1.65fr 0.75fr;
  gap: 30px;
  align-items: start;
}

.blog-main {
  min-width: 0;
}

.blog-list {
  display: grid;
  gap: 22px;
}

.blog-card {
  padding: 28px 24px;
  border-radius: 16px;
}

.featured-post {
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #8b95a7;
}

.featured-post h2,
.blog-post-item h3 {
  text-align: left;
  margin-bottom: 12px;
}

.featured-post p,
.blog-post-item p {
  line-height: 1.8;
  margin-bottom: 14px;
  text-align: left;
}

.blog-post-item h3 {
  font-size: 1.35rem;
}

.blog-sidebar {
  display: grid;
  gap: 22px;
}

.sidebar-card {
  padding: 24px 22px;
  text-align: left;
}

.sidebar-card h3 {
  margin-bottom: 12px;
}

.sidebar-card p {
  line-height: 1.8;
  margin-bottom: 16px;
}

.sidebar-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.sidebar-list a {
  text-decoration: none;
  color: #374151;
  font-weight: 600;
}

.sidebar-list a:hover {
  color: var(--color-red);
}

/* =========================
   HOME
   ========================= */

.home-hero {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.home-hero-text {
  text-align: left;
}

.home-hero-text h1 {
  margin-bottom: 18px;
}

.home-hero-description {
  max-width: 760px;
  margin: 20px 0 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-panel-card {
  width: 100%;
  max-width: 400px;
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  text-align: left;
}

.hero-panel-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.hero-panel-card p {
  line-height: 1.8;
  margin-bottom: 18px;
}

.hero-panel-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.hero-panel-list li {
  position: relative;
  padding-left: 18px;
  color: #374151;
  line-height: 1.7;
}

.hero-panel-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-red);
  position: absolute;
  left: 0;
  top: 11px;
}

.blog-preview-card {
  padding: 26px 22px;
  text-align: left;
}

.preview-date {
  display: inline-block;
  margin-bottom: 12px;
  color: #8b95a7;
  font-size: 0.88rem;
  font-weight: 600;
}

.blog-preview-card p {
  margin-bottom: 14px;
}

/* =========================
   POST PAGE
   ========================= */

.post-page {
  padding: 72px 0 90px;
  background: var(--color-white);
}

.post-container {
  width: min(92%, 1100px);
  margin: 0 auto;
}

.post-article {
  padding: 38px 34px;
  border-radius: 18px;
}

.post-header {
  margin-bottom: 28px;
}

.post-header h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 14px;
}

.post-summary {
  font-size: 1.08rem;
  line-height: 1.85;
}

.post-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 28px;
  display: block;
}

.post-body p {
  color: #374151;
  line-height: 1.95;
  margin-bottom: 18px;
  font-size: 1.03rem;
}

.post-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =========================
   FOOTER + FLOATING ICONS
   ========================= */

.footer {
  background: #fafafa;
  border-top: 1px solid var(--color-border);
  padding: 26px 0;
}

.footer-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-minimal p {
  color: #6b7280;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  color: var(--color-red);
  border-color: #f0c9c7;
  background: #fff7f7;
}

.floating-socials {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.floating-icon svg {
  width: 20px;
  height: 20px;
}

.floating-icon.whatsapp {
  background: #25d366;
}

.floating-icon.instagram {
  background: var(--color-red);
}

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

/* =========================
   RESPONSIVE
   ========================= */

@media (min-width: 1600px) {
  .container {
    width: min(96%, 1600px);
  }

  .home-hero-grid,
  .about-grid,
  .blog-layout,
  .contact-grid {
    gap: 42px;
  }

  .services-grid,
  .values-grid,
  .audience-grid,
  .blog-preview-grid {
    gap: 28px;
  }
}

@media (max-width: 1100px) {
  .services-grid,
  .values-grid,
  .audience-grid,
  .blog-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-layout,
  .home-hero-grid,
  .about-grid,
  .contact-grid {
    gap: 28px;
  }
}

@media (max-width: 960px) {
  .brand-logo {
    height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    padding: 18px 20px 22px;
  }

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

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  section,
  .page-hero,
  .home-hero {
    padding: 72px 0;
  }

  .services-grid,
  .values-grid,
  .audience-grid,
  .blog-preview-grid,
  .blog-layout,
  .home-hero-grid,
  .about-grid,
  .contact-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-text,
  .about-text,
  .about-text h2 {
    text-align: center;
  }

  .home-hero-description {
    margin-left: auto;
    margin-right: auto;
  }

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

  .home-hero-panel {
    justify-content: center;
  }

  .footer-minimal {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px 22px;
  }

  .contact-info-card h2,
  .contact-form-card h2 {
    font-size: 1.75rem;
  }

  .featured-post h2,
  .home-hero-text h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .post-header h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 640px) {
  .post-article,
  .cta-panel-box,
  .contact-info-card,
  .contact-form-card,
  .hero-panel-card,
  .about-highlight,
  .blog-card,
  .sidebar-card {
    padding: 24px 18px;
  }

  .page-hero {
    padding: 72px 0 60px;
  }

  .page-hero h1,
  .featured-post h2,
  .post-header h1 {
    font-size: 2rem;
  }

  .cta-panel-box {
    padding: 36px 22px;
  }

  .floating-socials {
    right: 14px;
    bottom: 14px;
  }

  .floating-icon {
    width: 42px;
    height: 42px;
  }

  .footer {
    padding-top: 42px;
  }
}

/* CARDS */

.card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  filter: grayscale(20%) contrast(1.05);
  /* filter: brightness(0.95); */
}

.service-card:hover .card-img {
  transform: scale(1.03);
}