:root {
  --bg: #ffffff;
  --ink: #000000;
  --muted: #5e5e5e;
  --line: #e2e2e2;
  --dark: #000000;
  --dark-soft: #1a1a1a;
  --gold: #000000; /* Replaced with black for minimal look */
  --gold-bright: #ffffff;
  --green: #f2f2f2; /* Light gray for sections */
  --clay: #1a1a1a;
  --max: 1200px;
  --header: 90px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  padding: 0 clamp(20px, 4vw, 58px);
  color: #fff;
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 70px;
  background: rgba(15, 15, 15, 0.95);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-logo {
  height: 55px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-bright);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav .nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.site-nav .nav-cta::after {
  display: none;
}

.lang-switch {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.lang-switch:hover {
  background: white;
  color: black;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.46) 44%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding-top: var(--header);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.register h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  width: min(820px, 100%);
  font-size: clamp(3.7rem, 9vw, 8.6rem);
}

.hero-copy {
  width: min(590px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: #ffffff;
  color: #000000;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: 34px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.scroll-cue span {
  width: 2px;
  height: 22px;
  background: #fff;
  animation: cue 1.45s infinite ease-in-out;
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(-8px);
    opacity: 0.35;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro h2,
.section h2,
.register h2 {
  max-width: 900px;
  font-size: clamp(2.25rem, 5.4vw, 5.4rem);
}

.intro p,
.location p,
.register p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-band {
  padding: clamp(54px, 7vw, 90px) 0;
  background: #f4f0ea;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature {
  min-height: 260px;
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
}

.feature-number {
  color: var(--gold);
  font-weight: 800;
}

.feature h3,
.schedule-item h3,
.speaker-card h3 {
  margin: 24px 0 8px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.feature p,
.schedule-item p,
.speaker-card p {
  margin: 0;
  color: var(--muted);
}

.dark-section {
  background: var(--dark);
  color: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(36px, 5vw, 62px);
}

.section-heading h2 {
  max-width: 760px;
}

.schedule {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.schedule-item {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 32px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--dark-soft);
}

.schedule-item time {
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-item h3 {
  margin-top: 0;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
}

.dark-section .schedule-item p {
  color: rgba(255, 255, 255, 0.68);
}

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

.speaker-card {
  border: 1px solid var(--line);
  background: #fff;
}

.speaker-photo {
  aspect-ratio: 4 / 4.8;
  background:
    radial-gradient(circle at 52% 30%, rgba(255, 255, 255, 0.7) 0 8%, transparent 9%),
    linear-gradient(150deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.64)),
    linear-gradient(135deg, var(--green), var(--gold));
}

.speaker-two {
  background:
    radial-gradient(circle at 50% 29%, rgba(255, 255, 255, 0.68) 0 8%, transparent 9%),
    linear-gradient(150deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.58)),
    linear-gradient(135deg, var(--clay), #293540);
}

.speaker-three {
  background:
    radial-gradient(circle at 52% 30%, rgba(255, 255, 255, 0.7) 0 8%, transparent 9%),
    linear-gradient(150deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62)),
    linear-gradient(135deg, #3b3f2f, #7c6b52);
}

.speaker-card h3,
.speaker-card p {
  padding-inline: 24px;
}

.speaker-card p {
  padding-bottom: 28px;
}

.location {
  background: #f7f7f4;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: #222;
  font-weight: 700;
}

.map-panel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(135deg, #263d39, #c7a468);
  background-size: 46px 46px, 46px 46px, cover;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  border: 7px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--clay);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.register {
  padding: clamp(76px, 10vw, 124px) 0;
  background: var(--green);
  color: #fff;
}

.register-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.register p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 80px 5vw 40px;
  background: #111;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: clamp(30px, 4vw, 50px);
}

.footer-socials a {
  color: #fff;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-socials a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-info-col svg {
  margin-bottom: 15px;
}

.footer-info-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 10px 0;
}

.footer-info-col a {
  color: #aaaaaa;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.2s;
  display: block;
}

.footer-info-col a:hover,
.footer-nav a:hover {
  color: #ffffff !important;
}

.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee Section */
.marquee-wrapper {
  background: #ffffff;
  padding: clamp(30px, 5vw, 60px) 0;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  user-select: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 40s linear infinite;
  will-change: transform;
}

.marquee-content {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  padding-right: clamp(2rem, 4vw, 4rem);
}

.marquee-content span {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink); /* Black */
  letter-spacing: 0.02em;
  line-height: 1;
}

.marquee-content span.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Cards Grid Section */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.action-card {
  position: relative;
  display: block;
  height: clamp(380px, 35vw, 650px);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: var(--ink);
  transform: translateZ(0);
}

.card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.action-card:hover .card-bg {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.85) 100%);
  transition: background 0.4s ease;
}

.action-card:hover .card-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.95) 100%);
}

.card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.card-content h3 {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.card-link {
  position: absolute;
  bottom: 40px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.action-card:hover .card-link {
  opacity: 1;
  transform: translateX(4px);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 999;
}

.dropdown-content a {
  color: #111 !important;
  padding: 12px 16px !important;
  text-decoration: none;
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #f9fafb !important;
  color: #111 !important;
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Premium Mega Menu (Nuestra Obra) */
.mega-dropdown {
  position: relative;
  display: inline-block;
}
.mega-drop-link {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 600px; /* More compact */
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 999;
  padding: 20px;
}
.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mega-item {
  display: block;
  padding: 14px 16px;
  border-radius: 8px;
  background: transparent;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  text-align: left;
}
.mega-item:hover {
  background: #f9fafb;
}
.mega-item h4 {
  margin: 0 0 4px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111 !important;
  text-transform: none;
  letter-spacing: normal;
  transition: color 0.2s;
}
.mega-item p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #666 !important;
  font-weight: 400;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
}
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 14px 20px 22px;
    background: rgba(15, 15, 15, 0.98);
    transform: translateY(-120%);
    transition: transform 220ms ease;
    max-height: calc(100vh - var(--header));
    overflow-y: auto;
  }
  .site-header.is-open .site-nav {
    transform: translateY(0);
  }
  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
  }
  
  /* Mobile Normal Dropdown */
  .dropdown-content {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    padding: 5px 0 10px 15px;
    background: transparent;
  }
  .nav-dropdown:hover .dropdown-content,
  .nav-dropdown:focus-within .dropdown-content {
    display: block;
  }
  .dropdown-content a {
    color: rgba(255,255,255,0.8) !important;
    padding: 12px 0 !important;
    border-radius: 0;
  }
  .dropdown-content a:hover {
    background-color: transparent !important;
    color: #fff !important;
  }
  
  /* Mobile Mega Menu */
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    padding: 10px 0;
    background: transparent;
  }
  .mega-dropdown:hover .mega-menu,
  .mega-dropdown:focus-within .mega-menu {
    display: block;
    transform: none;
  }
  .mega-menu-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .mega-item {
    background: rgba(255,255,255,0.05);
    padding: 12px 14px;
    border: none;
  }
  .mega-item h4 {
    color: #fff !important;
  }
  .mega-item p {
    color: rgba(255,255,255,0.6) !important;
  }
  .mega-item:hover {
    background: rgba(255,255,255,0.1);
  }

  .split,
  .feature-grid,
  .speaker-grid,
  .location-grid,
  .register-inner {
    grid-template-columns: 1fr;
  }
}

  .register-inner {
    grid-template-columns: 1fr;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --header: 70px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-text {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content,
  .section-inner,
  .footer-inner {
    width: min(100% - 32px, var(--max));
  }

  .hero h1 {
    font-size: clamp(3.1rem, 18vw, 4.8rem);
  }

  .hero-actions,
  .footer-links {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .feature,
  .schedule-item {
    padding: 26px;
  }

  .map-panel {
    min-height: 300px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .action-card {
    height: 420px;
  }

  .nav-dropdown:hover .dropdown-content {
    display: none;
  }
  .nav-dropdown:focus-within .dropdown-content,
  .nav-dropdown:active .dropdown-content {
    display: block;
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding-left: 20px;
  }
  .dropdown-content a {
    color: #fff !important;
  }
}

/* Modal / Lightbox Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 85vh;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff3b3b;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content iframe, .modal-content img {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

/* Pillars Section */
.pillars-section {
  background: #ffffff;
  padding-bottom: 100px;
}

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

.pillar-card {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.1);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  background: #f1f1f1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  margin-bottom: 28px;
  transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
  background: #000;
  color: #fff;
  transform: scale(1.1) rotate(8deg);
}

.pillar-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 18px 0;
  line-height: 1.3;
  color: #111;
  letter-spacing: -0.02em;
}

.pillar-desc {
  font-size: 0.98rem;
  color: #555;
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .pillars-section {
    padding-bottom: 60px;
  }
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pillar-card {
    padding: 35px 25px;
  }
}
