@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --navy-900: #111111;
  --navy-800: #1a2e45;
  --navy-600: #1a2e45;
  --navy-400: #1a2e45;
  
  --gold-300: #d4ae7c;
  --gold-500: #b08d57;
  --gold-700: #8c6b3e;
  
  --text-primary: #f7f9fa;
  --text-secondary: #CBD5E1;
  --text-tertiary: #94A3B8;

  --border-subtle: rgba(176, 141, 87, 0.15);
  --border-strong: rgba(176, 141, 87, 0.4);
  
  --glass-bg: rgba(26, 46, 69, 0.7);
  
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 6rem;
  
  /* Utilities */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--navy-900);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.text-gold {
  color: var(--gold-500);
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 800px;
}

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

section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background-color: var(--gold-500);
  color: var(--navy-900);
  border: 1px solid var(--gold-500);
  box-shadow: 0 4px 15px rgba(176, 141, 87, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 3.5s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-primary:hover {
  background-color: var(--gold-300);
  border-color: var(--gold-300);
  box-shadow: 0 0 25px rgba(176, 141, 87, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--gold-500);
  border: 1px solid var(--gold-500);
}

.btn-secondary:hover {
  background-color: rgba(176, 141, 87, 0.1);
  transform: translateY(-2px);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
}

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

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo-img:hover {
  opacity: 0.9;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0px 4px 12px rgba(255, 255, 255, 0.05));
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: 
    radial-gradient(circle at top right, var(--navy-600) 0%, transparent 40%),
    radial-gradient(circle at bottom left, rgba(176, 141, 87, 0.05) 0%, transparent 40%);
  position: relative;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  height: 130%;
  max-height: 1200px;
  width: auto;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

@keyframes float-watermark {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -52%) rotate(2deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* About Section */
.about {
  background-color: var(--navy-800);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* About Bento Premium Layout */
.about-bento-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-main-card {
  background: linear-gradient(145deg, rgba(26, 46, 69, 0.6), rgba(17, 17, 17, 0.8));
  border: 1px solid var(--border-strong);
  padding: 4rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.about-card-watermark {
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 90%;
  opacity: 0.05;
  pointer-events: none;
  filter: grayscale(100%);
}

.about-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(176, 141, 87, 0.1);
  padding: 2rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(176, 141, 87, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(176, 141, 87, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(176, 141, 87, 0.1);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background: rgba(10, 18, 34, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-500);
  box-shadow: inset 0 0 10px rgba(176, 141, 87, 0.1);
}

.pillar-span-2 {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
}

/* Portfolio Section */
/* Portfolio Editorial Vertical Accordion */
.portfolio-editorial-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: flex-start;
}

.portfolio-sticky-info {
  position: sticky;
  top: 8rem;
}

.pb-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.portfolio-accordion {
  border-top: 1px solid var(--border-subtle);
}

.acc-item {
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.acc-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition);
}

.acc-title-flex {
  display: flex;
  align-items: baseline;
  gap: 2rem;
}

.acc-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-500);
  opacity: 0.7;
}

.acc-trigger h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0;
  color: var(--text-secondary);
  transition: var(--transition);
}

.acc-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-secondary);
  transition: var(--transition);
  flex-shrink: 0;
}

.acc-trigger:hover h3,
.acc-item.active .acc-trigger h3 {
  color: var(--gold-500);
}

.acc-trigger:hover .acc-icon-wrap,
.acc-item.active .acc-icon-wrap {
  border-color: var(--gold-500);
  color: var(--gold-500);
  background: rgba(176, 141, 87, 0.05);
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.acc-content-inner {
  padding-bottom: 2.5rem;
  padding-left: 4rem;
  color: var(--text-secondary);
}

.acc-content-inner p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.acc-list {
  list-style: none;
}

.acc-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: var(--text-tertiary);
}

.acc-list li::before {
  content: '♦';
  color: var(--gold-500);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
  top: 4px;
}

.btn-link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--gold-500);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
}

.btn-link i {
  transition: transform 0.3s ease;
}

.btn-link:hover i {
  transform: translateX(5px);
}

/* Differentials Premium Pipeline */
.differentials {
  background-color: var(--navy-800);
}

.diff-pipeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 2rem;
}

.diff-pipeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3.1rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-500) 20%, var(--gold-500) 80%, transparent);
  opacity: 0.3;
}

.pipeline-item {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 3rem 0;
  position: relative;
  transition: var(--transition);
}

.pipeline-item:hover {
  transform: translateX(10px);
}

.pipeline-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(176, 141, 87, 0.4);
  line-height: 1;
  width: 80px;
  background: var(--navy-800);
  text-align: center;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.pipeline-item:hover .pipeline-number {
  color: var(--gold-500);
  text-shadow: 0 0 20px rgba(176, 141, 87, 0.4);
}

.pipeline-content {
  flex: 1;
}

.pipeline-content h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Target Audience Monolith */
.audience {
  background-color: var(--navy-900);
}

.audience-monolith {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, rgba(26, 46, 69, 0.8), rgba(17, 17, 17, 1));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.monolith-segment {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.monolith-segment:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(176, 141, 87, 0.2), transparent);
}

.monolith-segment:hover {
  background: rgba(176, 141, 87, 0.05);
  transform: translateY(-5px);
}

.monolith-segment i {
  font-size: 3rem;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.monolith-segment:hover i {
  transform: scale(1.1) translateY(-10px);
  filter: drop-shadow(0 0 15px rgba(176, 141, 87, 0.4));
}

.monolith-segment h4 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.monolith-segment:hover h4 {
  color: var(--gold-500);
}

/* Trust Premium Tracker */
.trust {
  background-color: var(--navy-800);
  text-align: center;
  position: relative;
}

.trust-premium-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 4rem 2rem;
  z-index: 1;
}

.trust-quotes-watermark {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12rem;
  color: rgba(176, 141, 87, 0.05);
  z-index: -1;
}

.trust-testimonial {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.trust-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.trust-line {
  width: 60px;
  height: 2px;
  background-color: var(--gold-500);
  box-shadow: 0 0 10px rgba(176, 141, 87, 0.5);
}

.trust-dock {
  margin-top: 5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 1.5rem 4rem;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.trust-dock span {
  font-size: 1.5rem;
  color: var(--text-tertiary);
  letter-spacing: 2px;
  transition: var(--transition);
}

.trust-dock span:hover {
  color: var(--gold-500);
  text-shadow: 0 0 15px rgba(176, 141, 87, 0.3);
}

/* CTA Premium Section */
.cta-sec {
  background-color: var(--navy-900);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  padding: 8rem 0;
}

.cta-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background-color: var(--navy-900);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  color: var(--gold-500);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold-500);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--gold-500);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--gold-500);
  color: var(--navy-900);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-tertiary);
  font-size: 0.875rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Removed Modals */

/* Floating WhatsApp */
.floating-wpp {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35), 0 0 0 transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  animation: pulse-wpp 2s infinite;
}

.floating-wpp::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: ripple-wpp 2s linear infinite;
  opacity: 0;
}

.floating-wpp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
  animation: none;
}

@keyframes pulse-wpp {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes ripple-wpp {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Responsive */
@media (max-width: 1024px) {
  .audience-monolith {
    grid-template-columns: repeat(2, 1fr);
  }
  .monolith-segment {
    padding: 3rem 2rem;
  }
  .monolith-segment:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 968px) {
  :root {
    --section-padding: 4.5rem;
  }
  
  .about-bento-layout,
  .portfolio-editorial-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .portfolio-sticky-info {
    position: relative;
    top: 0;
  }
  
  .pillar-span-2 {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .acc-content-inner {
    padding-left: 0;
  }
  
  .trust-dock {
    border-radius: var(--radius-md);
    padding: 1.5rem;
    gap: 2rem;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem;
  }

  h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 2rem;
  }
  
  .about-main-card {
    padding: 2.5rem 1.5rem;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-item {
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .pipeline-number {
    font-size: 2rem;
    width: 60px;
  }

  .diff-pipeline::before {
    left: 2.3rem; /* Adjusting the line position */
  }

  .trust-testimonial {
    font-size: 1.35rem;
  }
  
  .acc-trigger {
    padding: 1.5rem 0;
  }

  .acc-trigger h3 {
    font-size: 1.3rem;
  }
  
  .btn {
    width: 100%;
  }

  .header-cta {
    width: auto;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 3rem;
  }

  .nav-container {
    padding: 0 1rem;
    justify-content: center;
  }

  .logo-img {
    height: 50px;
  }

  .header-cta {
    display: none !important;
  }

  .hero-content h1 {
    font-size: 2.25rem !important; /* Overriding clamp if needed on tiny screens */
    margin-top: 2rem;
  }

  .audience-monolith {
    grid-template-columns: 1fr;
  }

  .monolith-segment:not(:last-child)::after {
    display: none;
  }

  .monolith-segment {
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .trust-dock {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-sec h2 {
    font-size: 1.8rem !important;
  }

  .floating-wpp {
    width: 55px;
    height: 55px;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
  }
  
  .pipeline-content h4 {
    font-size: 1.25rem;
  }

  .acc-title-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .acc-num {
    margin-bottom: 0px;
  }

  .footer-logo-img {
    height: 40px;
  }
}

/* Fix Touch Device Hover States */
@media (hover: none) {
  .pipeline-item:hover {
    transform: none !important;
  }
  .monolith-segment:hover {
    transform: none !important;
  }
  .monolith-segment:hover i {
    transform: none !important;
  }
  .btn-link:hover i {
    transform: none !important;
  }
  .pillar-card:hover {
    transform: none !important;
  }
  .floating-wpp:hover {
    transform: none !important;
  }
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none !important;
  }
}

