/* ============================================================
   PsykoLink — Ana Sayfa
   Design System: Psiko Mavi & Mint Paleti
   Fonts: Poppins (headers) + Inter (body)
   ============================================================ */

:root {
  --primary-green: #10B981;
  --primary-blue: #3B82F6;
  --accent-purple: #6C63FF;
  --success-green: #22C55E;
  --warning-orange: #F59E0B;
  --gradient-blue-green: linear-gradient(135deg, #27AE60, #3498DB);
  --soft-gray: #F9FAFB;
  --dark-navy: #0C0F1A;
  --text-black: #1F2937;
  --text-light-gray: #9CA3AF;
  --white: #FFFFFF;
  --surface: rgba(255, 255, 255, 0.6);
  --border: rgba(59, 130, 246, 0.3);
  --shadow: 0 25px 60px -30px rgba(14, 22, 40, 0.6);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: clamp(16rem, 90vw, 1200px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-black);
  background: var(--soft-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  border-radius: 25%;
  box-shadow:
    0 4px 14px -2px rgba(59, 130, 246, 0.45),
    0 2px 6px -1px rgba(14, 22, 40, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
  box-shadow:
    0 8px 22px -4px rgba(59, 130, 246, 0.55),
    0 4px 10px -2px rgba(14, 22, 40, 0.3);
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--text-black);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
  color: var(--text-black);
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--primary-green) !important;
  color: white !important;
  box-shadow: 0 12px 30px -18px var(--primary-green);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--success-green) !important;
  color: white !important;
  box-shadow: 0 16px 40px -20px rgba(16, 185, 129, 0.6) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Nav backdrop (mobile drawer overlay) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 500;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-backdrop.is-open { display: block; }

/* ============================================================
   ATOMS: badge, tag, buttons
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-green);
  font-family: "Inter", sans-serif;
  width: fit-content;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-green);
  font-family: "Inter", sans-serif;
}

.tag.blue {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--primary-blue);
}

.tag.purple {
  background: rgba(108, 99, 255, 0.1);
  border-color: rgba(108, 99, 255, 0.3);
  color: var(--accent-purple);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
  line-height: 1;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary-green), #0EA5E9);
  color: white;
  box-shadow: 0 20px 40px -25px rgba(16, 185, 129, 0.55);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 48px -22px rgba(16, 185, 129, 0.65);
}

.btn.ghost {
  position: relative;
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--primary-blue);
  z-index: 0;
}

.btn.ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #27AE60, #10B981, #3498DB, #3B82F6);
  background-size: 250% 100%;
  background-position: 0% 50%;
  animation: ghostSweep 3s ease-in-out infinite alternate;
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn.ghost:hover::before,
.btn.ghost:focus-visible::before {
  opacity: 1;
  animation-play-state: running;
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  color: white;
  transform: translateY(-2px);
}

.btn.outline-white {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  backdrop-filter: blur(8px);
}

.btn.outline-white:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn.sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
}

@keyframes ghostSweep {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */

.section-tag {
  margin-bottom: 1rem;
}

.section-header {
  margin-bottom: 3.5rem;
  max-width: 46rem;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-light-gray);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 7rem 0 5rem;
  background:
    radial-gradient(circle at 5% 15%, rgba(16, 185, 129, 0.14), transparent 55%),
    radial-gradient(circle at 88% 5%, rgba(59, 130, 246, 0.14), transparent 50%),
    radial-gradient(circle at 50% 95%, rgba(108, 99, 255, 0.08), transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.4rem;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-copy h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary-green) 20%, var(--primary-blue) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-light-gray);
  max-width: 36rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

.hero-trust {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1rem 1.4rem;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-black);
  line-height: 1.6;
  margin-top: 0.2rem;
}

.hero-trust i {
  color: var(--primary-green);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ============================================================
   HERO VISUAL — 3-layer premium trust cards
   ============================================================ */

.hero-visual {
  display: grid;
  gap: 1rem;
  position: relative;
  align-content: start;
}

/* Base card */
.trust-card {
  padding: 1.6rem 1.8rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow:
    0 4px 24px -8px rgba(14, 22, 40, 0.1),
    0 1px 4px -1px rgba(14, 22, 40, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 36px -12px rgba(59, 130, 246, 0.22),
    0 2px 8px -2px rgba(14, 22, 40, 0.1);
}

/* Primary card (top) — slightly larger */
.trust-card--primary {
  border-top: 2px solid rgba(16, 185, 129, 0.4);
}

/* Secondary card (middle) */
.trust-card--secondary {
  border-top: 2px solid rgba(59, 130, 246, 0.4);
}

/* Manifesto card (bottom) — gradient accent */
.trust-card--manifesto {
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.06) 0%,
    rgba(59, 130, 246, 0.06) 100%
  );
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-top: 2px solid rgba(108, 99, 255, 0.5);
}

/* Card header */
.trust-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.trust-card--manifesto .trust-card__header {
  border-bottom-color: rgba(108, 99, 255, 0.12);
}

.trust-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-black);
  margin: 0;
  line-height: 1.3;
}

/* Icon wrap */
.trust-card__icon-wrap {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.trust-card__icon-wrap--green {
  background: linear-gradient(135deg, var(--primary-green), #0EA5E9);
}

.trust-card__icon-wrap--blue {
  background: linear-gradient(135deg, #2563EB, var(--primary-blue));
}

.trust-card__icon-wrap--purple {
  background: linear-gradient(135deg, var(--accent-purple), #9333EA);
}

/* List */
.trust-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.trust-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.83rem;
  color: var(--text-black);
  line-height: 1.55;
}

.trust-card__list li strong {
  color: var(--text-black);
}

/* Bullet icons */
.trust-card__bullet {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  color: white;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.trust-card__bullet--green {
  background: linear-gradient(135deg, var(--primary-green), #0EA5E9);
}

.trust-card__bullet--blue {
  background: linear-gradient(135deg, #2563EB, var(--primary-blue));
}

.trust-card__bullet--purple {
  background: linear-gradient(135deg, var(--accent-purple), #9333EA);
}

/* Manifesto text */
.trust-card__manifesto-text {
  font-size: 0.86rem;
  color: #4B5563;
  line-height: 1.75;
  margin: 0 0 0.75rem;
}

.trust-card__manifesto-cta {
  font-size: 0.88rem;
  color: var(--text-black);
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(108, 99, 255, 0.12);
}

.trust-card__manifesto-cta strong {
  background: linear-gradient(135deg, var(--accent-purple), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   SECTION 1: PsykoLink Sana Ne Sunar? (Proof blocks)
   ============================================================ */

.what-we-offer {
  padding: 6rem 0;
  background: white;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}

.offer-copy {
  display: grid;
  gap: 1.2rem;
  position: sticky;
  top: 7rem;
}

.offer-copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  line-height: 1.25;
}

.offer-copy .offer-desc {
  font-size: 1rem;
  color: var(--text-light-gray);
  line-height: 1.8;
  margin: 0;
}

.offer-blocks {
  display: grid;
  gap: 1.5rem;
}

.offer-block {
  padding: 2.2rem;
  background: var(--soft-gray);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 25px 55px -45px rgba(14, 22, 40, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: grid;
  gap: 0.9rem;
}

.offer-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 70px -50px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.22);
}

.offer-block-icon-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.offer-block-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.offer-block-icon.green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--primary-green);
}

.offer-block-icon.blue {
  background: rgba(59, 130, 246, 0.12);
  color: var(--primary-blue);
}

.offer-block-icon.purple {
  background: rgba(108, 99, 255, 0.12);
  color: var(--accent-purple);
}

.offer-block h3 {
  font-size: 1.05rem;
  color: var(--text-black);
}

.offer-block p {
  font-size: 0.92rem;
  color: var(--text-light-gray);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   SECTION 2: PsykoLink Uygulaması (Modules)
   ============================================================ */

.app-modules {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.9) 0%, rgba(16, 185, 129, 0.07) 100%);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.module-card {
  padding: 2.2rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.12);
  box-shadow: 0 28px 60px -50px rgba(14, 22, 40, 0.32);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: grid;
  gap: 1.1rem;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 38px 75px -50px rgba(59, 130, 246, 0.38);
  border-color: rgba(59, 130, 246, 0.25);
}

.module-card:nth-child(4) {
  grid-column: 1 / span 1;
}

.module-card:nth-child(5) {
  grid-column: 2 / span 2;
}

.module-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  background:  linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(59, 130, 246, 0.12));
  color: var(--primary-green);
}

.module-card h3 {
  font-size: 1.1rem;
  color: var(--text-black);
}

.module-card p {
  font-size: 0.9rem;
  color: var(--text-light-gray);
  line-height: 1.75;
  margin: 0;
}

.modules-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* ============================================================
   SECTION 3: Blog Posts (Placeholder)
   ============================================================ */

.blog-section {
  padding: 6rem 0;
  background: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--soft-gray);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 25px 55px -45px rgba(14, 22, 40, 0.28);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px -50px rgba(59, 130, 246, 0.35);
}

.blog-card-image {
  height: 9rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(59, 130, 246, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(59, 130, 246, 0.3);
  flex-shrink: 0;
}

.blog-card-image--photo {
  display: block;
  width: 100%;
  height: 9rem;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-card-body {
  padding: 1.8rem;
  display: grid;
  gap: 0.9rem;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-light-gray);
}

.blog-card h3 {
  font-size: 1.05rem;
  color: var(--text-black);
  line-height: 1.45;
}

.blog-card .blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-light-gray);
  line-height: 1.7;
  margin: 0;
}

.blog-card .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: auto;
  padding-top: 0.5rem;
  transition: gap 0.25s ease;
}

.blog-card .blog-read-more:hover { gap: 0.7rem; }

.blog-bottom {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ============================================================
   SECTION 4: Keşfedebileceğin Sayfalar
   ============================================================ */

.explore-pages {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(14, 22, 40, 0.03), rgba(108, 99, 255, 0.05));
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.explore-card {
  padding: 2.4rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.12);
  box-shadow: 0 28px 60px -50px rgba(14, 22, 40, 0.3);
  display: grid;
  gap: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 38px 78px -50px rgba(108, 99, 255, 0.3);
  border-color: rgba(108, 99, 255, 0.2);
}

.explore-card-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.explore-card-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--primary-green); }
.explore-card-icon.blue  { background: rgba(59, 130, 246, 0.1); color: var(--primary-blue); }
.explore-card-icon.purple { background: rgba(108, 99, 255, 0.1); color: var(--accent-purple); }
.explore-card-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--warning-orange); }

.explore-card h3 {
  font-size: 1.15rem;
  color: var(--text-black);
}

.explore-card p {
  font-size: 0.9rem;
  color: var(--text-light-gray);
  line-height: 1.75;
  margin: 0;
}

.explore-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-blue);
  padding-top: 0.4rem;
  transition: gap 0.25s ease;
}

.explore-card-link:hover { gap: 0.7rem; }

.explore-bottom {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ============================================================
   SECTION 5: Eylem Raporları
   ============================================================ */

.action-reports {
  padding: 6rem 0;
  background: white;
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.report-card {
  padding: 2.2rem;
  background: var(--soft-gray);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 25px 55px -45px rgba(14, 22, 40, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: grid;
  gap: 1rem;
}

.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 70px -50px rgba(16, 185, 129, 0.3);
  border-color: rgba(16, 185, 129, 0.2);
}

.report-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.report-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-light-gray);
}

.report-card h3 {
  font-size: 1.05rem;
  color: var(--text-black);
  line-height: 1.45;
}

.report-card p {
  font-size: 0.88rem;
  color: var(--text-light-gray);
  line-height: 1.7;
  margin: 0;
}

.report-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-green);
  transition: gap 0.25s ease;
}

.report-link:hover { gap: 0.7rem; }

.reports-bottom {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */

.final-cta {
  padding: 6rem 0 7rem;
}

.final-cta-card {
  padding: 4rem 3.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #27AE60, #3498DB);
  color: white;
  box-shadow: 0 55px 100px -75px rgba(14, 22, 40, 0.85);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.final-cta-copy {
  display: grid;
  gap: 1.3rem;
}

.final-cta-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: white;
  line-height: 1.3;
}

.final-cta-copy p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin: 0;
}

.final-cta-actions {
  display: grid;
  gap: 1rem;
}

.cta-btn-row {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cta-btn-white {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  transition: background 0.3s ease, transform 0.25s ease;
  backdrop-filter: blur(8px);
}

.cta-btn-white:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(5px);
}

.cta-btn-white .cta-btn-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.cta-btn-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: white;
  color: var(--primary-green);
  font-size: 1rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  box-shadow: 0 25px 55px -40px rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  margin-bottom: 0.5rem;
}

.cta-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px -38px rgba(255, 255, 255, 0.8);
}

/* ============================================================
   ETHICS NOTE
   ============================================================ */

.ethics-note {
  padding: 1.8rem 0;
  background: rgba(59, 130, 246, 0.04);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.ethics-note .inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light-gray);
  line-height: 1.7;
  max-width: 56rem;
}

.ethics-note i {
  color: var(--primary-blue);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  padding: 3.5rem 0 2.5rem;
  background-color: var(--dark-navy);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 17rem;
  margin: 1rem 0 0;
}

.logo-text-footer {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}

.site-footer h4 {
  margin: 0 0 1rem;
  color: white;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.site-footer ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.site-footer ul li a:hover {
  color: var(--primary-green);
}

.footer-note {
  text-align: center;
  margin: 2.5rem 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1100px)
   ============================================================ */

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding: 5rem 0 3.5rem; }

  .hero-copy h1 { font-size: clamp(2rem, 5vw, 3rem); }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-copy { position: static; }

  .modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-card:nth-child(5) { grid-column: 1 / span 2; }

  .blog-grid,
  .reports-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    padding: 3rem 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 700px)
   ============================================================ */

@media (max-width: 700px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 15px 30px -10px rgba(14, 22, 40, 0.15);
  }

  .site-header.nav-open .site-nav { display: flex; }
  .site-header { position: relative; }

  .menu-toggle { display: flex; }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .module-card:nth-child(5) { grid-column: 1; }

  .blog-grid,
  .reports-grid,
  .explore-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-card { padding: 2.2rem 1.8rem; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }

  .offer-grid { gap: 2.5rem; }

  .what-we-offer,
  .app-modules,
  .blog-section,
  .explore-pages,
  .action-reports,
  .final-cta {
    padding: 4rem 0;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.4);
  outline-offset: 3px;
  border-radius: 4px;
}
