@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #fefefe;
  --fg: #1a1a2e;
  --card: #ffffff;
  --secondary: #f5f5f7;
  --muted: #6b7280;
  --border: #e5e7eb;
  --brand-orange: #eb671b;
  --brand-dark: #1a1a2e;
  --surface-dark: #141425;
  --white: #ffffff;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--fg); line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(254,254,254,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; }
.logo-text { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--fg); }
.logo-sub { font-size: 9px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--muted); display: block; text-align: center; }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a { font-size: 14px; font-weight: 500; color: var(--fg); transition: color 0.2s; }
.nav a:hover, .nav a.active { color: var(--brand-orange); }
.mobile-toggle { display: none; background: none; font-size: 24px; color: var(--fg); }
.mobile-nav { display: none; background: var(--bg); border-top: 1px solid var(--border); padding: 16px 24px; }
.mobile-nav a { display: block; padding: 8px 0; font-size: 14px; font-weight: 500; color: var(--fg); }

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-toggle { display: block; }
  .mobile-nav.open { display: block; }
}

/* Hero */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,26,46,0.4), rgba(26,26,46,0.6)); }
.hero-content { position: relative; z-index: 10; max-width: 1280px; margin: 0 auto; padding: 128px 24px 128px; }
.hero h1 { font-size: clamp(48px, 8vw, 80px); font-weight: 300; color: var(--white); line-height: 1.1; }
.hero p { margin-top: 24px; font-size: 18px; color: rgba(255,255,255,0.8); max-width: 420px; }
.hero-curve { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-curve svg { width: 100%; display: block; }

/* Gallery */
.gallery { padding: 64px 24px; }
.gallery-grid { max-width: 1024px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; grid-auto-rows: 200px; }
.gallery-grid .span2 { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; transition: transform 0.5s; }
.gallery-grid img:hover { transform: scale(1.05); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Brand Section */
.brand { padding: 80px 24px; text-align: center; }
.brand h2 { font-size: clamp(28px, 4vw, 36px); }
.brand h2 strong { font-weight: 700; }
.brand p { margin-top: 16px; color: var(--muted); max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.brand-cta { margin-top: 32px; padding: 12px 32px; border-radius: 999px; background: var(--brand-orange); color: var(--white); font-weight: 500; font-size: 14px; transition: opacity 0.2s; }
.brand-cta:hover { opacity: 0.9; }
.services-grid { max-width: 900px; margin: 64px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.service-card { text-align: center; }
.service-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--secondary); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; }
.service-card h3 { font-size: 14px; font-weight: 600; }
.service-card p { font-size: 12px; color: var(--muted); margin-top: 4px; }
@media (max-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* Why Choose */
.why-choose { padding: 80px 24px; background: var(--secondary); }
.why-inner { max-width: 1024px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); width: 100%; }
.why-choose h2 { font-size: clamp(28px, 4vw, 36px); margin-bottom: 32px; }
.reason { margin-bottom: 24px; }
.reason h3 { font-weight: 600; font-size: 16px; }
.reason p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.btn-dark { margin-top: 32px; padding: 12px 32px; border-radius: 999px; background: var(--fg); color: var(--bg); font-weight: 500; font-size: 14px; transition: opacity 0.2s; }
.btn-dark:hover { opacity: 0.9; }
@media (max-width: 768px) { .why-inner { grid-template-columns: 1fr; } }

/* References */
.references { padding: 64px 24px; background: var(--secondary); text-align: center; }
.references h2 { font-size: 28px; }
.references > p { color: var(--muted); margin-top: 8px; }
.ref-link { display: inline-block; margin-top: 16px; font-size: 14px; color: var(--brand-orange); }
.ref-link:hover { text-decoration: underline; }
.logos-grid { max-width: 900px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.logo-box { display: flex; align-items: center; justify-content: center; height: 64px; border-radius: 8px; background: var(--card); border: 1px solid var(--border); font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.05em; }
@media (max-width: 768px) { .logos-grid { grid-template-columns: repeat(3, 1fr); } }

/* Pricing */
.pricing { padding: 80px 24px; text-align: center; }
.pricing h2 { font-size: clamp(28px, 4vw, 36px); }
.pricing > p { margin-top: 12px; color: var(--muted); max-width: 560px; margin-left: auto; margin-right: auto; }
.plans { max-width: 960px; margin: 56px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan { border-radius: 16px; padding: 32px; text-align: left; border: 1px solid var(--border); background: var(--card); transition: box-shadow 0.3s; }
.plan:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.plan.featured { border-color: var(--brand-orange); background: rgba(194,112,58,0.05); box-shadow: 0 8px 30px rgba(194,112,58,0.1); }
.plan-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.plan-price { margin-top: 16px; font-size: 30px; font-weight: 700; }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--muted); }
.plan-desc { margin-top: 12px; font-size: 14px; color: var(--muted); }
.plan-btn { margin-top: 24px; width: 100%; padding: 10px; border-radius: 999px; font-size: 14px; font-weight: 500; transition: opacity 0.2s; }
.plan-btn:hover { opacity: 0.9; }
.plan-btn-dark { background: var(--fg); color: var(--bg); }
.plan-btn-orange { background: var(--brand-orange); color: var(--white); }
.plan-features { margin-top: 24px; list-style: none; }
.plan-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); padding: 6px 0; }
.plan-features li::before { content: '✓'; color: var(--brand-orange); font-weight: 700; font-size: 12px; }
.plan-note { margin-top: 24px; font-size: 12px; color: #999; }
@media (max-width: 768px) { .plans { grid-template-columns: 1fr; max-width: 400px; } }

/* Footer */
.footer { background: var(--brand-dark); color: var(--white); padding: 64px 24px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.footer h3 { font-size: 20px; font-weight: 300; }
.footer h3 span { color: var(--brand-orange); }
.footer-cta { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 16px; }
.footer-tags { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; color: var(--brand-orange); margin-top: 16px; }
.footer-bottom { margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-bottom a { display: block; font-size: 14px; color: rgba(255,255,255,0.7); padding: 4px 0; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-contact { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contact div { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.6); font-size: 18px; transition: color 0.2s; }
.footer-social a:hover { color: var(--white); }
.footer-copy { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; color: rgba(255,255,255,0.5); }
@media (max-width: 768px) { .footer-top, .footer-bottom { grid-template-columns: 1fr; } }

/* Page headers */
.page-header { padding: 96px 24px 64px; background: var(--secondary); text-align: center; }
.page-header h1 { font-size: clamp(36px, 5vw, 48px); }
.page-header p { margin-top: 16px; color: var(--muted); max-width: 560px; margin-left: auto; margin-right: auto; }

/* Cards grid */
.cards-section { padding: 64px 24px; }
.cards-grid { max-width: 1024px; margin: 0 auto; display: grid; gap: 32px; }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) { .cards-grid.cols-2, .cards-grid.cols-3 { grid-template-columns: 1fr; } }
.card { border: 1px solid var(--border); border-radius: 16px; padding: 32px; background: var(--card); transition: box-shadow 0.3s; }
.card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.card-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(194,112,58,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; }
.card h2 { font-size: 20px; font-weight: 600; }
.card .tags { display: flex; gap: 8px; margin-top: 8px; }
.card .tag { font-size: 12px; padding: 4px 10px; border-radius: 999px; background: var(--secondary); color: var(--muted); }
.card p { font-size: 14px; color: var(--muted); margin-top: 16px; line-height: 1.6; }
.card-link { display: inline-block; margin-top: 24px; font-size: 14px; font-weight: 500; color: var(--brand-orange); }
.card-link:hover { text-decoration: underline; }

/* Company */
.company-content { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.company-content h2 { font-size: 24px; margin-bottom: 16px; }
.company-content p { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.contact-card { display: flex; align-items: flex-start; gap: 12px; padding: 24px; border-radius: 12px; background: var(--card); border: 1px solid var(--border); }
.contact-card .icon { color: var(--brand-orange); font-size: 20px; margin-top: 2px; }
.contact-card h3 { font-size: 14px; font-weight: 600; }
.contact-card p { font-size: 14px; color: var(--muted); margin-top: 4px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
