/* style.css — Modern U.S. Digital Agency */

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

:root {
  --white: #ffffff;
  --black: #09090b;
  --gray-900: #09090d;
  --gray-800: #18181b;
  --gray-700: #27272a;
  --gray-600: #3f3f46;
  --gray-400: #a1a1aa;
  --gray-300: #d4d4d8;
  --gray-200: #e4e4e7;
  --gray-100: #f4f4f5;
  --gray-50: #fafafa;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --radius: 12px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--gray-900);
  line-height: 1.5;
}

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

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

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

/* ===== Typography ===== */
h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}
h1 span {
  color: var(--blue-600);
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
p {
  color: var(--gray-700);
}

/* ===== Navbar ===== */
.navbar {
  padding: 1.5rem 0;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
}
.logo span {
  color: var(--blue-600);
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-weight: 500;
}
.nav-cta {
  font-weight: 600;
  color: var(--blue-600);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  background: #eff6ff;
  transition: background 0.3s var(--ease);
}
.nav-cta:hover {
  background: #dbeafe;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== Hero ===== */
.hero {
  padding: 6rem 0 4rem;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-desc {
  font-size: 1.125rem;
  margin: 1.5rem 0 2rem;
  max-width: 550px;
  color: var(--gray-700);
}
.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 550px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
  display: block;
  margin: 0 auto;
}

.hero-visual {
  padding: 2rem;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  font-size: 1rem;
}
.button.primary {
  background: var(--blue-600);
  color: white;
}
.button.primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}
.button.ghost {
  color: var(--gray-700);
  background: transparent;
}
.button.ghost:hover {
  color: var(--blue-600);
}


/* ===== Client Logo Carousel ===== */
.clients-carousel {
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.logo-carousel {
  width: 100%;
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: scroll-left 20s linear infinite;
  width: max-content;
}
.logo-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.client-logo {
  flex: none;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.client-logo:hover {
  opacity: 1;
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}
.section-header {
  max-width: 650px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.bg-light {
  background-color: var(--gray-50);
}

/* ===== Projects ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.project-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s var(--ease);
}
.project-card:hover {
  transform: translateY(-5px);
}
.project-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 20px;
  margin-bottom: 1rem;
}
.project-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--gray-800);
}
.testimonial-author strong {
  display: block;
}
.testimonial-author span {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ===== FAQ ===== */
/* ===== FAQ Section ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-900);
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--blue-600);
}
.faq-icon {
  font-size: 1.25rem;
  font-weight: bold;
  width: 20px;
  text-align: center;
}
.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.faq-answer {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== Final CTA ===== */
.cta-final {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  text-align: center;
}
.cta-final h2 {
  margin-bottom: 1rem;
}
.cta-final p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: var(--gray-700);
}

/* ===== Footer ===== */
.footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--gray-200);
  margin-top: 3rem;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-logo span {
  color: var(--blue-600);
}
.footer-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.75rem;
}
.footer-col ul li a {
  color: var(--gray-600);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--blue-600);
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin: 1.5rem auto 2rem;
    max-width: 600px;
  }
  .hero-actions {
    justify-content: center;
  }
  .mockup-placeholder {
    margin: 0 auto;
    max-width: 500px;
  }
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --black: #09090b;
  --gray-900: #09090d;
  --gray-800: #18181b;
  --gray-700: #27272a;
  --gray-600: #3f3f46;
  --gray-500: #64748b;
  --gray-400: #a1a1aa;
  --gray-300: #d4d4d8;
  --gray-200: #e4e4e7;
  --gray-100: #f4f4f5;
  --gray-50: #fafafa;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --green-100: #f0fdf4;
  --purple-100: #fdf2f8;
  --orange-100: #fff7ed;
  --radius: 12px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--gray-900);
  line-height: 1.5;
  overflow-x: hidden;
}

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

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

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

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}
h1 span {
  color: var(--blue-600);
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
p {
  color: var(--gray-700);
}

.page-header h1 {
  margin-bottom: 1rem;
}
.page-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 700px;
}

/* ===== NAVBAR ===== */
.navbar {
  padding: 1.5rem 0;
  position: relative;
  z-index: 100;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
}
.logo span {
  color: var(--blue-600);
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-weight: 500;
}
.nav-links a.active {
  color: var(--blue-600);
}
.nav-cta {
  font-weight: 600;
  color: var(--blue-600);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  background: #eff6ff;
  transition: background 0.3s var(--ease);
}
.nav-cta:hover {
  background: #dbeafe;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== MAIN PAGE CONTENT ===== */
.page-content {
  padding: 4rem 0;
}

/* ===== HERO ===== */
.hero {
  padding: 6rem 0 4rem;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-desc {
  font-size: 1.125rem;
  margin: 1.5rem 0 2rem;
  max-width: 550px;
  color: var(--gray-700);
}
.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  font-size: 1rem;
}
.button.primary {
  background: var(--blue-600);
  color: white;
}
.button.primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}
.button.ghost {
  color: var(--gray-700);
  background: transparent;
}
.button.ghost:hover {
  color: var(--blue-600);
}

.mockup-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(120deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
}

/* ===== CLIENT LOGO CAROUSEL ===== */
.clients-carousel {
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.logo-carousel {
  width: 100%;
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: scroll-left 20s linear infinite;
  width: max-content;
}
.logo-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.client-logo {
  flex: none;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.client-logo:hover {
  opacity: 1;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}
.section-header {
  max-width: 650px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.bg-light {
  background-color: var(--gray-50);
}

/* ===== PROJECTS / PORTFOLIO ===== */
.projects-grid,
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.project-card,
.portfolio-full-item {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s var(--ease);
}
.project-card:hover,
.portfolio-full-item:hover {
  transform: translateY(-5px);
}
.project-badge,
.service-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  background: var(--blue-100);
  color: var(--blue-600);
  border-radius: 20px;
  margin-bottom: 1rem;
}
.portfolio-full-thumbnail {
  height: 200px;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
}
.portfolio-full-content h2,
.project-card h3 {
  margin-bottom: 0.75rem;
}
.project-card p,
.portfolio-full-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}
.project-meta {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ===== SERVICES ===== */
.services-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.service-full-item p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
}
.service-full-item h2 {
  margin: 0.75rem 0 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--gray-800);
}
.testimonial-author strong {
  display: block;
}
.testimonial-author span {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 0.5rem;
}
.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-900);
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--blue-600);
}
.faq-icon {
  font-size: 1.25rem;
  font-weight: bold;
  width: 20px;
  text-align: center;
}
.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.faq-answer {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}
.contact-info h2,
.contact-form h2 {
  margin-bottom: 1.25rem;
}
.contact-info p {
  margin: 0.75rem 0;
  color: var(--gray-700);
}
.contact-info a {
  color: var(--blue-600);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
}

/* ===== FINAL CTA ===== */
.cta-final {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  text-align: center;
}
.cta-final h2 {
  margin-bottom: 1rem;
}
.cta-final p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: var(--gray-700);
}

/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
.footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--gray-200);
  margin-top: 3rem;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-logo span {
  color: var(--blue-600);
}
.footer-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.75rem;
}
.footer-col ul li a {
  color: var(--gray-600);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--blue-600);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: background 0.2s, transform 0.2s;
}
.social-icon:hover {
  background: var(--blue-100);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* ===== CHAT BUTTON ===== */
.chat-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background 0.3s, transform 0.3s;
  z-index: 1000;
}
.chat-button:hover {
  background: var(--blue-700);
  transform: scale(1.1);
}
.chat-button svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* ===== CHAT MODAL ===== */
.chat-modal {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 360px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  flex-direction: column;
  z-index: 1001;
  max-height: 500px;
  overflow: hidden;
}
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--blue-600);
  color: white;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.chat-header h3 {
  font-size: 1.125rem;
  margin: 0;
}
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}
.chat-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
}
.chat-message p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}
.chat-action {
  margin-top: 1.5rem;
  text-align: center;
}
.chat-footer {
  display: flex;
  border-top: 1px solid var(--gray-200);
}
.chat-tab {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.chat-tab.active {
  background: var(--blue-50);
  color: var(--blue-600);
  font-weight: 600;
}
.chat-tab:hover {
  background: var(--gray-50);
}

/* Chat Empty State */
.chat-empty {
  text-align: center;
  padding: 2rem 1rem;
}
.chat-empty svg {
  width: 48px;
  height: 48px;
  fill: var(--gray-400);
  margin-bottom: 1rem;
}
.chat-empty p {
  font-size: 1.125rem;
  margin: 0.5rem 0;
}

/* Chat Send */
.chat-send {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--gray-200);
}
.chat-send input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
}
.chat-send button {
  padding: 0.5rem 1rem;
  background: var(--blue-600);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.chat-send button:hover {
  background: var(--blue-700);
}

/* Responsive */
@media (max-width: 768px) {
  .chat-modal {
    width: 90%;
    right: 5%;
    left: 5%;
    bottom: 1rem;
  }
  .chat-button {
    bottom: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
  }
}

/* ===== ABOUT PAGE ===== */
.about-section {
  margin: 2.5rem 0;
}
.about-section p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}
.value-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}
.value-list li {
  padding: 0.5rem 0;
  color: var(--gray-700);
  position: relative;
  padding-left: 1.5rem;
}
.value-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-600);
  font-weight: bold;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin: 1.5rem auto 2rem;
    max-width: 600px;
  }
  .hero-actions {
    justify-content: center;
  }
  .mockup-placeholder {
    margin: 0 auto;
    max-width: 500px;
  }
  .nav-links {
    display: none;
  }
}

/* ===== Page Hero ===== */
.page-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

/* ===== Values Section ===== */
.values-section {
  margin: 4rem 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.value-card:hover {
  transform: translateY(-5px);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}
.value-card h3 {
  margin: 1rem 0;
}

/* ===== Who We Are ===== */
.who-we-are {
  margin: 5rem 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.who-content h2 {
  margin-bottom: 1.5rem;
}
.who-content p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}
.who-stats {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius);
}
.stat-item {
  margin-bottom: 1.5rem;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-600);
  display: block;
}

/* ===== Services v2 ===== */
.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.service-card-2 {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s var(--ease);
}
.service-card-2:hover {
  transform: translateY(-5px);
}
.service-icon {
  font-size: 2rem;
  flex: none;
}
.service-content {
  flex: 1;
}
.service-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  background: var(--blue-100);
  color: var(--blue-600);
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.service-card-2 h2 {
  font-size: 1.25rem;
  margin: 0.5rem 0 0.75rem;
}
.service-card-2 p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .who-we-are {
    grid-template-columns: 1fr;
  }
  .service-card-2 {
    flex-direction: column;
    text-align: center;
  }
  .service-icon {
    text-align: center;
  }
}

/* ===== Our Journey – Modern Gallery ===== */
.journey-section {
  padding: 5rem 0;
  background: var(--white);
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.journey-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px #ffffff;
  height: 320px;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.journey-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px #ffffff;
}
.journey-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.journey-item:hover img {
  transform: scale(1.03);
}
.journey-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #ffffff, transparent);
  padding: 1.5rem 1rem 1rem;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.journey-item:hover .journey-overlay {
  transform: translateY(0);
}
.journey-year {
  font-size: 1.25rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.25rem;
}
.journey-caption {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
}