:root {
  --primary-color: #38D6C4;
  /* Teal Blue */
  --secondary-color: #1F2A37;
  /* Midnight Navy */
  --accent-color: #D5F6F2;
  /* Soft Aqua Tint */
  --text-color: #1F2A37;
  --light-gray: #F1F5F9;
  --medium-gray: #94A3B8;
  --dark-gray: #475569;
  --white: #FFFFFF;
  --black: #1F2A37;

  --container-width: 1140px;
  --radius-lg: 24px;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.16);
}

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

html,
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-color);
  background: radial-gradient(circle at top left, #e0f7f4, #f8fafc);
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font: inherit;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: var(--medium-gray);
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ===================== NAVBAR ===================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 2rem;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0, #ffffff, #38d6c4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-weight: 700;
}

.nav-logo-text span {
  display: block;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: radial-gradient(circle at 0 0,
      rgba(255, 255, 255, 0.5),
      transparent),
    rgba(15, 23, 42, 0.35);
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(18px);
}

.nav-link {
  position: relative;
  padding: 0.45rem 1.5rem;
  border-radius: 999px;
  color: #e2e8f0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

/* Crystal / glass effect on hover */
.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9),
      rgba(148, 163, 184, 0.25));
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
  z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
  transform: translateY(0);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.nav-toggle {
  display: none;
}

/* ===================== HERO / BANNER ===================== */

.hero {
  height: 100vh;
  /* similar proportion as reference */
  position: relative;
  margin-top: 4.5rem;
  /* below fixed nav */
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(15, 23, 42, 0.8),
      rgba(15, 23, 42, 0.1));
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  color: #f9fafb;
}

.hero-inner {
  width: 100%;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  gap: 0.4rem;
  align-items: center;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary-color);
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.hero-subtitle {
  max-width: 520px;
  color: #e5e7eb;
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: #cbd5f5;
}

.hero-meta img {
  width: 36px;
  height: 36px;
  border-radius: 999px;
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  gap: 0.4rem;
}

.btn-primary {
  background: linear-gradient(135deg, #38d6c4, #14b8a6);
  color: var(--secondary-color);
  box-shadow: 0 16px 35px rgba(8, 47, 73, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 20px 50px rgba(8, 47, 73, 0.75);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.6);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
}

/* ===================== FEATURED POSTS ===================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.post-card-img {
  height: 210px;
  overflow: hidden;
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.post-card:hover .post-card-img img {
  transform: scale(1.06);
}

.post-card-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  background: var(--white);
}

.post-card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--medium-gray);
}

.post-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.post-card-desc {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.83rem;
  color: var(--medium-gray);
}

.post-card-footer a {
  color: var(--primary-color);
  font-weight: 600;
}

/* ===================== WHY CHOOSE US ===================== */

.why-choose {
  background: linear-gradient(145deg, #d5f6f2, #f8fafc);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.why-text-block h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-text-block p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  max-width: 460px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.why-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 10px 25px rgba(148, 163, 184, 0.4);
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.5s ease;
}

.why-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.why-item h4 {
  margin-bottom: 0.3rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.why-visual {
  background: radial-gradient(circle at top left, #38d6c4, #1f2937);
  border-radius: 36px;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.why-visual::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65), transparent);
  top: -80px;
  right: -40px;
  opacity: 0.4;
}

.why-visual h3 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}

.why-visual p {
  font-size: 0.9rem;
  max-width: 320px;
}

/* Animation state */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}

.fade-in-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.why-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== STAY UPDATED ===================== */

.newsletter {
  background: var(--light-gray);
}

.newsletter-inner {
  background: var(--secondary-color);
  color: white;
  border-radius: 24px;
  padding: 2.5rem 2.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.newsletter-text h3 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.newsletter-text p {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.newsletter-input {
  min-width: 260px;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.7);
  color: #f9fafb;
}

.newsletter-input::placeholder {
  color: #9ca3af;
}

/* ===================== FOOTER ===================== */

.footer {
  background: #0b1220;
  color: #e5e7eb;
  padding: 2.5rem 0 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(75, 85, 99, 0.7);
  padding-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #9ca3af;
}

.footer-bottom {
  font-size: 0.8rem;
  color: #6b7280;
}

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

.page-hero {
  padding-top: 7rem;
  padding-bottom: 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--medium-gray);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.2rem;
  align-items: stretch;
}

.contact-left {
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-avatar-grid {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #d5f6f2, #e5e7eb);
  overflow: hidden;
}

.contact-avatar-grid img {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 3px solid #f9fafb;
}

.contact-social {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.contact-social a {
  color: var(--secondary-color);
}

.contact-form-card {
  border-radius: 32px;
  background: #d9f99d;
  background: linear-gradient(135deg, #d5f6f2, #a7f3d0);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-form-card h2 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.contact-form-card p {
  font-size: 0.92rem;
  color: var(--dark-gray);
  margin-bottom: 1.7rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.form-control,
.form-select,
.form-textarea {
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-helper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--secondary-color);
}

.form-submit-row {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
}

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

.about-section {
  padding-top: 7rem;
  padding-bottom: 4.5rem;
}

.about-banner {
  background: var(--secondary-color);
  border-radius: 32px;
  color: white;
  padding: 3rem 2.8rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.about-banner h1 {
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
}

.about-banner p {
  max-width: 560px;
  color: #cbd5f5;
  font-size: 0.96rem;
}

.about-banner::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 100%;
  background: radial-gradient(circle, rgba(56, 214, 196, 0.85), transparent);
  right: -80px;
  bottom: -120px;
}

.about-journey {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.4rem;
  margin-bottom: 3.5rem;
  align-items: center;
}

.about-journey-image {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-journey-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.about-journey-content p {
  font-size: 0.94rem;
  color: var(--dark-gray);
  margin-bottom: 1.2rem;
}

.about-milestones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.milestone-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.milestone-card span {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--medium-gray);
  margin-bottom: 0.3rem;
}

.milestone-card h3 {
  margin-bottom: 0.4rem;
}

.milestone-card p {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.team-card {
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.team-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.team-card-body {
  padding: 1rem 1.2rem 1.2rem;
}

.team-card-body h4 {
  margin-bottom: 0.15rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--medium-gray);
}

/* ===================== BLOG LISTING ===================== */

.blog-layout {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.category-tab {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: #e5e7eb;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.category-tab.active {
  background: var(--secondary-color);
  color: white;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.blog-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.blog-card-img {
  height: 190px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.blog-card-footer {
  margin-top: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--medium-gray);
}

.blog-card-footer a {
  color: var(--primary-color);
}

/* ===================== SINGLE POST ===================== */

.post-page {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.post-header {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.post-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.post-meta {
  font-size: 0.85rem;
  color: var(--medium-gray);
}

.post-hero-image {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.post-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--dark-gray);
  text-align: justify;
}

.post-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--secondary-color);
  text-align: left;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.post-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 1.5rem;
}

.post-content h3 {
  font-size: 1.15rem;
  margin: 1.8rem 0 0.8rem;
  color: var(--secondary-color);
  text-align: left;
}

.post-content p {
  margin-bottom: 1.2rem;
}

.post-content p+p {
  margin-top: 0;
}

.post-content ul,
.post-content ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.8rem;
  text-align: left;
}

.post-content ul {
  list-style: disc;
}

.post-content ol {
  list-style: decimal;
}

.post-content li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.post-content hr {
  margin: 2.5rem 0;
  border: none;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.post-content strong {
  color: var(--secondary-color);
}

/* Post CTA Buttons */
.section-cta {
  margin: 2.5rem 0;
  padding: 1.8rem;
  background: linear-gradient(135deg, #d5f6f2, #a7f3d0);
  border-radius: 18px;
  text-align: center;
}

.section-cta p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.section-cta .btn-cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, #38d6c4, #14b8a6);
  color: var(--secondary-color);
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(8, 47, 73, 0.25);
}

.section-cta .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(8, 47, 73, 0.35);
}

/* Back to Blog Button */
.back-to-blog {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  text-align: center;
}

.back-to-blog .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--secondary-color);
  color: white;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.back-to-blog .btn-back:hover {
  background: #0f172a;
  transform: translateY(-2px);
}

/* ===================== PRIVACY & TERMS PAGES ===================== */

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.page-content h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.page-content .last-updated {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

.page-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.page-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.page-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark-gray);
}

.page-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-content ul li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.page-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-content a:hover {
  color: #14b8a6;
}

.page-content .signature {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

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

@media (max-width: 992px) {

  .cards-grid,
  .blog-cards-grid,
  .about-milestones,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid,
  .about-journey,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero {
    height: 90vh;
  }
}

@media (max-width: 768px) {
  .nav {
    justify-content: space-between;
  }

  .nav-menu {
    position: fixed;
    inset: 70px 1.2rem auto;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    flex-direction: column;
    padding: 0.8rem 0.6rem;
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-logo {
    margin-right: 0;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: #000000;
    border-radius: 999px;
  }

  .hero {
    height: 80vh;
  }

  .hero-bg {
    border-radius: 0;

  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 3rem;
  }

  .cards-grid,
  .blog-cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .newsletter-inner {
    padding: 2rem 1.7rem;
  }

  .about-banner {
    padding: 2.3rem 1.8rem;
  }

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

  .section {
    padding: 3.2rem 0;
  }
}