/* =============================================
   STRAIGHT ANGLES MEDIA SOLUTIONS
   Main Stylesheet
   ============================================= */

:root {
  --white: #ffffff;
  --off-white: #fafaf8;
  --violet: #5b2d8e;
  --violet-dark: #3d1e62;
  --violet-light: #7b4db8;
  --violet-pale: #f0e8ff;
  --gold: #d4a017;
  --gold-light: #f5c842;
  --gold-pale: #fff8e6;
  --dark: #1a1020;
  --dark-2: #2d1f3d;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --body-font: "DM Sans", sans-serif;
  --display-font: "Cormorant Garamond", serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(91, 45, 142, 0.1);
  --shadow-lg: 0 12px 48px rgba(91, 45, 142, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(212, 160, 23, 0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 48px;
}

.section-title em {
  font-style: italic;
  color: var(--violet);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--violet);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--violet-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 45, 142, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--violet);
  border: 2px solid var(--violet);
}
.btn-outline:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #b8880e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91, 45, 142, 0.08);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(91, 45, 142, 0.12);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

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

.logo-box {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-straight {
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--dark);
}

.logo-angles {
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--violet);
  border: 2px solid var(--gold);
  padding: 0 4px;
  margin-top: -2px;
}

.logo-sub {
  font-size: 0.62rem;
  color: var(--gray);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--violet);
  border-radius: 2px;
  transition: width var(--transition);
}

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

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

.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  border-left: 1px solid var(--gray-light);
}

.nav-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--violet-pale);
  color: var(--violet);
  font-size: 0.8rem;
  transition: var(--transition);
}

.nav-social a:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.shape1 {
  width: 600px;
  height: 600px;
  background: var(--violet);
  top: -200px;
  right: -100px;
}

.shape2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: 100px;
  left: -100px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 45, 142, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 45, 142, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-tag::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title em {
  font-style: italic;
  color: var(--violet-light);
}

.hero-title-accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--violet-light));
  border-radius: 2px;
  opacity: 0.5;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.dot {
  color: var(--gold);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  animation: fadeIn 0.8s ease 0.5s both;
}

.hero-ring {
  width: 320px;
  height: 320px;
  border: 2px dashed rgba(91, 45, 142, 0.15);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.hero-center-badge {
  position: absolute;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 48px rgba(91, 45, 142, 0.4);
  z-index: 2;
}

.badge-inner {
  text-align: center;
  color: var(--white);
}

.badge-num {
  display: block;
  font-family: var(--display-font);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.3;
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(91, 45, 142, 0.08);
}

.hero-card i {
  width: 36px;
  height: 36px;
  background: var(--violet-pale);
  color: var(--violet);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hc1 {
  top: 40px;
  left: 20px;
  animation-delay: 0s;
}
.hc2 {
  bottom: 80px;
  left: 0;
  animation-delay: 1.2s;
}
.hc3 {
  top: 60px;
  right: 10px;
  animation-delay: 0.6s;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
  padding: 100px 0;
  background: var(--off-white);
}

.why-section > .container > .section-title {
  text-align: center;
}
.why-section > .container > .section-label {
  display: block;
  text-align: center;
}

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

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(91, 45, 142, 0.07);
  transition: var(--transition);
  cursor: default;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91, 45, 142, 0.15);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--violet-pale);
  color: var(--violet);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--violet);
  color: var(--white);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* =============================================
   STATS
   ============================================= */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--violet-dark) 0%,
    var(--violet) 60%,
    var(--violet-light) 100%
  );
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(212, 160, 23, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-num {
  font-family: var(--display-font);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  font-family: var(--display-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

/* =============================================
   APPROACH
   ============================================= */
.approach-section {
  padding: 100px 0;
  background: var(--white);
}

.approach-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: nowrap;
}

.step {
  flex: 1;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(91, 45, 142, 0.06);
  transition: var(--transition);
}

.step:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--display-font);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--violet-pale);
  line-height: 1;
  margin-bottom: 12px;
  transition: var(--transition);
}

.step:hover .step-num {
  color: var(--gold-light);
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* =============================================
   SERVICES PREVIEW
   ============================================= */
.services-preview {
  padding: 100px 0;
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(91, 45, 142, 0.07);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--dark);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--violet);
}

.service-card-all {
  background: linear-gradient(
    135deg,
    var(--violet-pale),
    rgba(212, 160, 23, 0.08)
  );
  border-color: rgba(91, 45, 142, 0.15);
}

.sc-icon {
  width: 52px;
  height: 52px;
  background: var(--violet-pale);
  color: var(--violet);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.service-card:hover .sc-icon {
  background: var(--violet);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

.sc-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--violet);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-card:hover .sc-link {
  gap: 10px;
}

/* =============================================
   INDUSTRIES
   ============================================= */
.industries-section {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.industries-section .section-label,
.industries-section .section-title {
  display: block;
  text-align: center;
}

.industries-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  cursor: default;
}

.industry-tag i {
  color: var(--violet);
  font-size: 0.9rem;
}

.industry-tag:hover {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
  transform: translateY(-2px);
}

.industry-tag:hover i {
  color: var(--gold-light);
}

/* =============================================
   CLIENTS
   ============================================= */
.clients-section {
  padding: 80px 0;
  background: var(--off-white);
  text-align: center;
}

.clients-section .section-label,
.clients-section .section-title {
  display: block;
  text-align: center;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.client-logo-box {
  background: var(--white);
  border: 1px solid rgba(91, 45, 142, 0.07);
  border-radius: var(--radius);
  padding: 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: default;
}

.client-logo-box:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.client-logo-box span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.clients-note {
  font-size: 0.75rem;
  color: var(--gray);
  font-style: italic;
  opacity: 0.7;
}

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-family: var(--display-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-box {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 16px;
}

.footer .logo-straight {
  color: var(--white);
}

.footer .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--gold);
  width: 16px;
  margin-top: 2px;
}

.footer-subscribe p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  gap: 8px;
}

.subscribe-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 10px 18px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.subscribe-form input:focus {
  border-color: var(--gold);
}

.subscribe-form button {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.subscribe-form button:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--violet);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(91, 45, 142, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--violet-dark);
  transform: translateY(-2px);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--violet-dark) 0%,
    var(--violet) 60%,
    var(--violet-light) 100%
  );
  padding: 140px 0 80px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
  border-color: rgba(245, 200, 66, 0.25);
}

.page-hero-title {
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.75;
  position: relative;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  justify-content: center;
  margin-top: 20px;
  position: relative;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold-light);
}
.breadcrumb .sep {
  font-size: 0.7rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro {
  padding: 100px 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.about-highlight {
  background: linear-gradient(
    135deg,
    var(--violet-pale),
    rgba(212, 160, 23, 0.07)
  );
  border-left: 4px solid var(--violet);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--display-font);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--violet-dark);
  margin: 24px 0;
}

.about-visual-box {
  background: linear-gradient(
    135deg,
    var(--violet-pale) 0%,
    rgba(212, 160, 23, 0.1) 100%
  );
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.mission-vision {
  padding: 80px 0;
  background: var(--off-white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(91, 45, 142, 0.07);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mv-card .mv-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-family: var(--display-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.mv-card p {
  color: var(--gray);
  line-height: 1.75;
  font-size: 0.92rem;
}

/* TIMELINE */
.journey-section {
  padding: 100px 0;
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--violet),
    var(--gold),
    var(--violet-light)
  );
}

.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.tl-item:nth-child(even) {
  flex-direction: row-reverse;
}

.tl-date {
  flex: 1;
  text-align: right;
  padding-top: 6px;
}

.tl-item:nth-child(even) .tl-date {
  text-align: left;
}

.tl-date span {
  font-family: var(--display-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--violet);
}

.tl-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--violet);
  flex-shrink: 0;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.tl-body {
  flex: 1;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid rgba(91, 45, 142, 0.07);
  transition: var(--transition);
}

.tl-body:hover {
  box-shadow: var(--shadow);
  background: var(--white);
}

.tl-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.tl-body p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.65;
}

/* VALUES */
.values-section {
  padding: 80px 0;
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(91, 45, 142, 0.06);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.value-card .val-icon {
  font-size: 1.8rem;
  color: var(--violet);
  margin-bottom: 12px;
}

.value-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 80px 0;
}

.service-card-lg {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(91, 45, 142, 0.07);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card-lg:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--violet);
}

.service-card-lg .sc-icon {
  width: 60px;
  height: 60px;
  font-size: 1.4rem;
}

.service-card-lg h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
}

.service-card-lg p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

/* =============================================
   INDIVIDUAL SERVICE PAGE
   ============================================= */
.service-detail {
  padding: 80px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.service-main h2 {
  font-family: var(--display-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.service-main p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.benefits-list {
  margin: 28px 0;
}

.benefit-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.benefit-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.benefit-item div h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 3px;
}

.benefit-item div p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0;
}

.service-sidebar .sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(91, 45, 142, 0.07);
  margin-bottom: 20px;
}

.service-sidebar h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-tag {
  background: var(--white);
  border: 1px solid rgba(91, 45, 142, 0.12);
  color: var(--violet);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition);
}

.tool-tag:hover {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 80px 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(91, 45, 142, 0.07);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-light);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--display-font);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.portfolio-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--gray-light);
  background: transparent;
  color: var(--gray);
  transition: var(--transition);
}

.portfolio-tab.active,
.portfolio-tab:hover {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
}

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

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(91, 45, 142, 0.07);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-thumb {
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--violet-pale),
    rgba(212, 160, 23, 0.15)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--violet);
}

.portfolio-info {
  padding: 20px 22px;
}

.portfolio-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.portfolio-info p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.portfolio-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  background: var(--violet-pale);
  color: var(--violet);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info h3 {
  font-family: var(--display-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail .icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--violet-pale);
  color: var(--violet);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail .cd-text h5 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-detail .cd-text p {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0;
}

.social-contact {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-contact a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  color: var(--gray);
  font-size: 1rem;
  transition: var(--transition);
}

.social-contact a:hover {
  border-color: var(--violet);
  background: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(91, 45, 142, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--violet);
  background: var(--white);
}

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

.map-section {
  padding: 60px 0 80px;
  background: var(--off-white);
}

.map-section h3 {
  font-family: var(--display-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  text-align: center;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .approach-steps {
    flex-wrap: wrap;
  }
  .step-arrow {
    display: none;
  }
  .step {
    flex: 1 1 calc(50% - 10px);
  }
}

/* Around line 2109 — change .hero to .hero-inner */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-right {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--gray-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 999;
  }

  .nav-right.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }
  .nav-links a {
    display: block;
    padding: 10px 16px;
    border-radius: var(--radius);
  }
  .nav-links a::after {
    display: none;
  }
  .nav-social {
    display: none;
  }

  .nav-right.open .nav-social {
    display: flex;
    border-left: none;
    border-top: 1px solid var(--gray-light);
    padding-left: 0;
    padding-top: 16px;
    width: 100%;
    justify-content: center;
  }

/* NEW — targets .hero-inner correctly */
  .hero {
    min-height: auto;
    align-items: flex-start;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 40px;
    text-align: center;
  }
  .hero-visual {
    display: none;
  }
  .hero-tag {
    justify-content: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-divider {
    display: none;
  }
  .stats-inner {
    gap: 32px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 24px;
  }
  .tl-item,
  .tl-item:nth-child(even) {
    flex-direction: row;
  }
  .tl-date,
  .tl-item:nth-child(even) .tl-date {
    display: none;
  }
  .tl-dot {
    margin-left: -8px;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}