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

:root {
  --orange: #FF751F;
  --orange-light: #FF9A57;
  --orange-dark: #E0601A;
  --white: #FFFFFF;
  --off-white: #F7F8F9;
  --grey-100: #EEF0F2;
  --grey-200: #DDE1E6;
  --grey-300: #B0B8C4;
  --grey-400: #8A94A6;
  --grey-500: #5C6575;
  --grey-600: #3A4250;
  --grey-700: #1F2933;
  --warm-bg: #F7F8F9;
  --dark-bg: #1a1a1a;
  --dark-surface: #2a2a2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--grey-600); background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ─── NAV ─── */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 18px 60px; display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--grey-200); transition: all .4s; }
.nav.scrolled { padding: 12px 60px; box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.nav-logo img { height: 48px; width: auto; display: block; mix-blend-mode: multiply; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links > a, .nav-has-dropdown > a { font-size: .82rem; font-weight: 500; color: var(--grey-500); letter-spacing: .06em; text-transform: uppercase; transition: color .3s; }
.nav-links > a:hover, .nav-links > a.active, .nav-has-dropdown > a:hover { color: var(--orange); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: 6px; transition: all .3s !important; }
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,117,31,.3); }

/* ─── NAV DROPDOWN ─── */
.nav-has-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 10px; z-index: 200; }
.nav-dropdown-menu-inner { background: var(--white); border: 1px solid var(--grey-200); border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,.09); min-width: 320px; overflow: hidden; }
.nav-has-dropdown:hover .nav-dropdown-menu { display: block; }
a.dd-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--grey-100); transition: background .2s; font-size: .85rem; font-weight: 400; color: var(--grey-700); letter-spacing: 0; text-transform: none; }
a.dd-item:last-child { border-bottom: none; }
a.dd-item:hover { background: var(--grey-100); color: var(--grey-700); }
.dd-icon { width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0; margin-top: 2px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); display: flex; align-items: center; justify-content: center; }
.dd-icon svg { width: 16px; height: 16px; fill: white; stroke: none; }
.dd-label { font-size: .85rem; font-weight: 600; color: var(--grey-700); text-transform: none; letter-spacing: 0; }
.dd-desc { font-size: .74rem; color: var(--grey-400); margin-top: 2px; text-transform: none; letter-spacing: 0; }
.nav-chevron { font-size: .65rem; margin-left: 3px; display: inline-block; transition: transform .2s; }
.nav-has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* ─── MOBILE NAV ─── */
.mob-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.mob-btn span { display: block; width: 22px; height: 2px; background: var(--grey-600); }
.mob-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--grey-200); z-index: 99; flex-direction: column; }
.mob-nav.open { display: flex; }
.mob-nav a { padding: 14px 30px; font-size: .88rem; font-weight: 500; color: var(--grey-600); border-bottom: 1px solid var(--grey-100); }
.mob-nav a:hover { color: var(--orange); }

/* ─── BUTTONS ─── */
.btn { display: inline-block; padding: 14px 32px; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: all .3s; border: none; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,117,31,.3); }
.btn-outline { background: transparent; color: var(--grey-600); border: 2px solid var(--grey-300); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,117,31,.04); }
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.15); }

/* ─── SECTIONS ─── */
section { padding: 100px 60px; }
.section-label { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.section-title { font-size: 2.6rem; color: var(--grey-700); margin-bottom: 20px; letter-spacing: -.02em; line-height: 1.15; }
.section-title em { font-style: italic; color: var(--orange); }
.section-desc { font-size: 1rem; line-height: 1.7; color: var(--grey-400); max-width: 600px; }
.container { max-width: 1300px; margin: 0 auto; }

/* ─── HERO SHARED ─── */
.page-hero { position: relative; padding: 160px 60px 80px; overflow: hidden; }
.page-hero.dark { background: var(--grey-700); color: var(--white); }
.page-hero.dark .section-label { color: var(--orange-light); }
.page-hero.dark h1 { color: var(--white); }
.page-hero.dark p { color: var(--grey-300); }
.page-hero .hero-stats { display: flex; gap: 48px; margin-top: 40px; }
.page-hero .hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--orange); }
.page-hero .hero-stat-label { font-size: .78rem; color: var(--grey-400); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ─── CARDS ─── */
.card { background: var(--white); border-radius: 12px; border: 1px solid var(--grey-200); padding: 32px 28px; transition: all .4s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.06); }

/* ─── FOOTER ─── */
.site-footer { background: #000000; padding: 60px; color: #999; }
.footer-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand img { height: 72px; width: auto; display: block; margin-bottom: 20px; margin-left: -8px; }
.footer-brand p { font-size: .82rem; line-height: 1.7; color: #777; }
.footer-newsletter { margin-top: 24px; }
.footer-newsletter h5 { font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.footer-newsletter .nl-form { display: flex; gap: 0; }
.footer-newsletter input { flex: 1; padding: 10px 14px; border: 1px solid #444; border-right: none; border-radius: 6px 0 0 6px; background: var(--dark-surface); color: var(--white); font-size: .82rem; outline: none; }
.footer-newsletter input::placeholder { color: #666; }
.footer-newsletter button { padding: 10px 16px; background: var(--orange); border: none; border-radius: 0 6px 6px 0; cursor: pointer; color: var(--white); font-size: .85rem; transition: background .3s; }
.footer-newsletter button:hover { background: var(--orange-dark); }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--orange); }
.footer-col a { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: #888; margin-bottom: 12px; transition: color .3s; }
.footer-col a:hover { color: var(--orange-light); }
.footer-col a::before { content: '›'; color: var(--orange); font-size: 1rem; }
.footer-contact-card { background: var(--dark-surface); border-radius: 12px; padding: 28px; border: 1px solid #333; text-align: center; }
.footer-contact-card h4 { font-size: 1.2rem; color: var(--white); margin-bottom: 6px; }
.footer-contact-card p { font-size: .82rem; color: #888; margin-bottom: 16px; }
.footer-contact-card .btn { padding: 10px 28px; border-radius: 24px; font-size: .8rem; border: 2px solid var(--orange); color: var(--orange); background: transparent; display: inline-flex; align-items: center; gap: 8px; }
.footer-contact-card .btn:hover { background: var(--orange); color: var(--white); }
.footer-sebi { margin-top: 16px; padding-top: 12px; border-top: 1px solid #333; }
.footer-sebi h5 { font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 600; color: var(--white); margin-bottom: 8px; letter-spacing: .08em; }
.footer-sebi p { font-size: .78rem; color: #888; line-height: 1.5; }
.footer-sebi span { color: var(--orange); }
.footer-bottom { max-width: 1300px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid #333; font-size: .75rem; color: #666; display: flex; justify-content: space-between; }

/* ─── ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav { padding: 14px 24px; }
  section, .page-hero { padding-left: 24px; padding-right: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats-img { max-width: 500px; margin: 0 auto; }
  .value-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-has-dropdown > a { display: none; }
  .mob-btn { display: flex !important; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-title { font-size: 1.8rem; }
  .section-desc { font-size: .9rem; }
  .page-hero { padding-top: 120px; padding-bottom: 40px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero .hero-stats { flex-wrap: wrap; gap: 24px; }
  /* Hero */
  .hero { padding: 120px 20px 40px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: .9rem; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { text-align: center; }
  .hero-stats-img { max-width: 100%; }
  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 40px 20px; }
  /* Value prop */
  .value-prop { padding: 40px 20px; }
  .value-tag { font-size: .65rem; }
  .value-left h2 { font-size: 2rem; }
  .lifecycle-item { gap: 14px; padding: 16px 0; }
  /* Why section */
  .why-section { padding: 40px 20px; }
  .growth-img { border-radius: 8px; }
  /* Testimonials */
  .testimonials { padding: 40px 20px; }
  .testimonial-card { min-width: 280px; padding: 28px 24px; }
  /* Footer */
  .site-footer { padding: 40px 20px; }
  .footer-brand img { height: 56px; }
  .footer-contact-card { padding: 20px; }
  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .value-left h2 { font-size: 1.6rem; }
  .nav-logo img { height: 36px; }
  .hero-sebi { font-size: .65rem; padding: 6px 14px; }
  .btn { padding: 12px 24px; font-size: .8rem; }
}
