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

:root {
  --orange: #ff8a1e;
  --pink: #ff2d87;
  --purple: #8b2dff;
  --blue: #2dc2ff;
  --dark-bg: #0a0f1e;
  --light-bg: #f8f9fc;
  --main-text: #142033;
  --gradient: linear-gradient(135deg, #ff8a1e 0%, #ff2d87 45%, #8b2dff 100%);
  --gradient-reverse: linear-gradient(135deg, #8b2dff 0%, #ff2d87 45%, #ff8a1e 100%);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-glow: 0 0 40px rgba(255, 138, 30, 0.15);
  --card-radius: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--main-text);
  background: var(--light-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  vertical-align: middle;
  max-width: 100%;
}

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

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

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

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

.nav-logo img {
  height: 55px;
  width: auto;
  border-radius: 8px;
  mix-blend-mode: screen;
}

.nav-logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* nav-logo-text handles branding */

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

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

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 138, 30, 0.35);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobile toggle open state (hamburger to X) */
.mobile-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 138, 30, 0.12) 0%, rgba(255, 45, 135, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 45, 255, 0.1) 0%, rgba(45, 194, 255, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 10s ease-in-out infinite reverse;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Sora', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 138, 30, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Sora', sans-serif;
}

.btn-secondary:hover {
  border-color: var(--orange);
  background: rgba(255, 138, 30, 0.1);
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-avatars {
  display: flex;
}

.hero-avatars .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--dark-bg);
  margin-left: -12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
}

.hero-avatars .avatar:first-child {
  margin-left: 0;
}

.hero-trust-info {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.hero-trust-info .stars {
  color: #FFD700;
}

.hero-trust-info strong {
  color: #fff;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
}

.hero-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 16px 20px;
  animation: float 6s ease-in-out infinite;
}

.hero-card-1 {
  top: 5%;
  right: 5%;
  animation-delay: 0s;
}

.hero-card-2 {
  top: 35%;
  left: 0;
  animation-delay: 1s;
}

.hero-card-3 {
  bottom: 25%;
  right: 0;
  animation-delay: 2s;
}

.hero-card-4 {
  bottom: 5%;
  left: 10%;
  animation-delay: 3s;
}

.hero-card h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-card .stat {
  color: var(--orange);
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-card .change {
  color: #4ADE80;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--gradient);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(255, 138, 30, 0.3);
}

.hero-center-icon svg {
  width: 50px;
  height: 50px;
  fill: #fff;
}

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

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #fff;
  padding: 50px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section-dark .trust-bar {
  background: transparent;
  border-bottom: none;
  padding: 0;
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.section-dark .trust-bar .container {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
}

.trust-item .number {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-item .label {
  color: #666;
  font-size: 0.95rem;
  margin-top: 5px;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark-bg);
  color: #fff;
}

.section-light {
  background: #fff;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  color: var(--main-text);
}

.section-title .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-dark .section-title {
  color: #fff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  line-height: 1.8;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 35px 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 138, 30, 0.12), rgba(139, 45, 255, 0.12));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--purple);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--main-text);
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-card .learn-more {
  color: var(--purple);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .learn-more:hover {
  gap: 10px;
}

/* Dark service cards */
.section-dark .service-card {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  backdrop-filter: blur(10px);
}

.section-dark .service-card h3 {
  color: #fff;
}

.section-dark .service-card p {
  color: rgba(255, 255, 255, 0.65);
}

.section-dark .service-icon {
  background: linear-gradient(135deg, rgba(255, 138, 30, 0.2), rgba(139, 45, 255, 0.2));
}

.section-dark .service-icon svg {
  stroke: var(--orange);
}

/* ===== AI AUTOMATION WORKFLOW ===== */
.workflow-section {
  background: var(--dark-bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.workflow-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 138, 30, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.workflow-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--gradient);
  opacity: 0.3;
}

.workflow-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.workflow-number {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 15px;
  position: relative;
  z-index: 2;
}

.workflow-step .icon {
  width: 80px;
  height: 80px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  backdrop-filter: blur(10px);
}

.workflow-step .icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--orange);
}

.workflow-step h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}

.workflow-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ===== HOW WE WORK ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: var(--gradient);
  opacity: 0.2;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 70px;
  height: 70px;
  border: 2px solid rgba(255, 138, 30, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-dark .step-number {
  border-color: rgba(255, 138, 30, 0.4);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--main-text);
}

.step-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-dark .step-card h3 {
  color: #fff;
}
.section-dark .step-card p {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== CASE STUDIES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.case-image {
  height: 200px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.case-image svg {
  width: 60px;
  height: 60px;
  stroke: #fff;
  opacity: 0.3;
}

.case-content {
  padding: 25px;
}

.case-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 138, 30, 0.1), rgba(139, 45, 255, 0.1));
  color: var(--purple);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.case-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.case-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.case-results {
  display: flex;
  gap: 20px;
}

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

.case-result .value {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-result .label {
  font-size: 0.75rem;
  color: #999;
}

/* ===== WHY CHOOSE US ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 30, 0.3);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 138, 30, 0.2), rgba(139, 45, 255, 0.2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #fff;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.btn-white {
  background: #fff;
  color: var(--purple);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Sora', sans-serif;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-bg);
  padding: 80px 0 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 15px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient);
  border-color: transparent;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

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

.footer-col ul li {
  margin-bottom: 12px;
}

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

.footer-col ul a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--dark-bg);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 138, 30, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(139, 45, 255, 0.08) 0%, transparent 50%);
}

.page-header h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
  color: var(--orange);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-card > p {
  color: #666;
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--main-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E8ECF4;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: #F8FAFC;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 138, 30, 0.1);
}

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

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

.contact-info-card {
  background: var(--dark-bg);
  border-radius: var(--card-radius);
  padding: 40px;
  color: #fff;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-info-card > p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 35px;
  line-height: 1.7;
}

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

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
}

.info-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-content p,
.info-content a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.info-content a:hover {
  color: var(--orange);
}

.map-container {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 200px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== BLOG STYLES ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  background: var(--gradient);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image .blog-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image .blog-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: #999;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content h3 a:hover {
  color: var(--purple);
}

.blog-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: var(--purple);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover {
  gap: 10px;
}

/* Blog Article Page */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-article .article-header {
  margin-bottom: 40px;
}

.blog-article .article-category {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 138, 30, 0.1), rgba(139, 45, 255, 0.1));
  color: var(--purple);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-article h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-article .article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.blog-article .article-content h2 {
  font-size: 1.6rem;
  margin: 35px 0 15px;
  color: var(--main-text);
}

.blog-article .article-content h3 {
  font-size: 1.3rem;
  margin: 25px 0 12px;
  color: var(--main-text);
}

.blog-article .article-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

.blog-article .article-content ul,
.blog-article .article-content ol {
  margin: 15px 0 20px 25px;
  color: #444;
}

.blog-article .article-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.blog-article .article-content blockquote {
  border-left: 4px solid var(--purple);
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(255, 138, 30, 0.05), rgba(139, 45, 255, 0.05));
  border-radius: 0 12px 12px 0;
  margin: 25px 0;
  font-style: italic;
  color: #555;
}

/* ===== TERMS & PRIVACY ===== */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.policy-content .date {
  color: #999;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 35px 0 15px;
  color: var(--main-text);
}

.policy-content h3 {
  font-size: 1.2rem;
  margin: 25px 0 10px;
  color: var(--main-text);
}

.policy-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
  margin: 15px 0 20px 25px;
  color: #444;
}

.policy-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 15px;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--orange);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 25px 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin: 0 auto 35px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .services-grid,
  .cases-grid,
  .blog-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-logo-text {
    font-size: 0.85rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid,
  .cases-grid,
  .blog-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .workflow-grid::before {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .blog-article h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trust-bar .container {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE ===== */

/* Hide nav logo text on mobile to prevent overlap */
@media (max-width: 768px) {
  .nav-logo-text {
    display: none;
  }

  .nav-logo img {
    height: 45px;
  }

  .navbar .container {
    padding: 0 20px;
  }

  /* Page header mobile fixes */
  .page-header {
    padding: 120px 0 50px;
  }

  .page-header h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .page-header p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
  }

  .breadcrumb {
    font-size: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Section spacing mobile */
  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Service cards mobile */
  .service-card {
    padding: 25px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon svg {
    width: 24px;
    height: 24px;
  }

  /* Step cards mobile */
  .step-card {
    padding: 25px;
  }

  /* Testimonial cards mobile */
  .testimonial-card {
    padding: 25px;
  }

  /* CTA section mobile */
  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  /* Footer mobile */
  .footer {
    padding: 50px 0 30px;
  }

  .footer-col {
    margin-bottom: 30px;
  }

  /* Hero section mobile */
  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Trust badges mobile */
  .trust-badges-section .badges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .trust-badges-section .badge-item {
    padding: 15px 10px;
  }

  .trust-badges-section .badge-icon {
    width: 30px;
    height: 30px;
  }

  /* Payment methods mobile */
  .payment-methods-section .payment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .payment-methods-section .payment-item {
    padding: 15px 10px;
  }

  .payment-methods-section .payment-icon {
    width: 35px;
    height: 35px;
  }

  /* Portfolio grid mobile */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Benefits grid mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Contact form mobile */
  .contact-form {
    padding: 25px;
  }

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

  /* Blog grid mobile */
  .blog-card {
    padding: 20px;
  }

  /* Workflow mobile */
  .workflow-step {
    padding: 20px;
  }

  /* Why choose us mobile */
  .why-us-card {
    padding: 20px;
  }

  /* FAQ mobile */
  .faq-item {
    padding: 20px;
  }

  .faq-question {
    font-size: 1rem;
  }

  /* Service page specific mobile fixes */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card {
    padding: 25px;
  }

  .pricing-card h3 {
    font-size: 1.2rem;
  }

  .pricing-card .price {
    font-size: 2rem;
  }

  .pricing-card .feature-list li {
    font-size: 0.85rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .services-table {
    font-size: 0.85rem;
  }

  .services-table thead th {
    padding: 12px 15px;
    font-size: 0.8rem;
  }

  .services-table tbody td {
    padding: 10px 15px;
    font-size: 0.85rem;
  }

  .important-note-box {
    padding: 25px;
    margin: 0 15px;
  }

  .service-page-cta {
    padding: 50px 0;
  }

  .service-page-cta h2 {
    font-size: 1.6rem;
  }

  /* Blog article mobile */
  .blog-article {
    padding: 0 15px;
  }

  .blog-article h1 {
    font-size: 1.6rem;
  }

  /* About page mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    height: 300px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Checkout page mobile */
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  /* Services page mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .nav-logo img {
    height: 40px;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .page-header h1 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .trust-badges-section .badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-methods-section .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

html:not(.js-ready) .reveal {
  opacity: 1;
  transform: none;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  background: var(--gradient);
  border-radius: var(--card-radius);
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.about-image svg {
  width: 120px;
  height: 120px;
  stroke: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-stat {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 138, 30, 0.08), rgba(139, 45, 255, 0.08));
  border-radius: 16px;
}

.about-stat .number {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat .label {
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--card-radius);
  padding: 30px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.team-card .role {
  color: var(--purple);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: 35px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 30, 0.3);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 138, 30, 0.2), rgba(139, 45, 255, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
}

.value-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CHECKOUT / ORDER PAGE ===== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.order-summary {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.order-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.order-item:last-child {
  border-bottom: none;
}

.order-item .name {
  font-weight: 600;
  color: var(--main-text);
}

.order-item .price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--purple);
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  margin-top: 10px;
  border-top: 2px solid var(--main-text);
}

.order-total .label {
  font-size: 1.1rem;
  font-weight: 700;
}

.order-total .amount {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.payment-methods {
  background: var(--dark-bg);
  border-radius: var(--card-radius);
  padding: 35px;
  color: #fff;
}

.payment-methods h2 {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.payment-option {
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.payment-option:hover,
.payment-option.active {
  border-color: var(--orange);
}

.payment-option-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-option-header .icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 138, 30, 0.2), rgba(139, 45, 255, 0.2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-option-header .icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
}

.payment-option-header h4 {
  font-size: 1rem;
}

.payment-option-header .check {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.payment-option.active .check {
  background: var(--orange);
  border-color: var(--orange);
}

.payment-option.active .check svg {
  display: block;
}

.payment-option-header .check svg {
  display: none;
  width: 14px;
  height: 14px;
  stroke: #fff;
}

.payment-details {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--glass-border);
  display: none;
}

.payment-option.active .payment-details {
  display: block;
}

.payment-details p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.payment-details .account-info {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  margin-top: 10px;
}

.payment-details .account-info p {
  margin-bottom: 5px;
  font-size: 0.85rem;
}

.payment-details .account-info strong {
  color: var(--orange);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 20px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
}

@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BOOK CONSULTATION PAGE ===== */
.consultation-section {
  padding: 100px 0;
  background: #fff;
}

.consultation-frame {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.consultation-frame iframe {
  width: 100%;
  height: 700px;
  border: 0;
}

/* ===== 404 PAGE ===== */
.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  text-align: center;
}

.error-content h1 {
  font-size: 8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.error-content h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
}

.error-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ===== TRUST BADGES ===== */
.trust-badges-section {
  padding: 50px 0;
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}

.trust-badge:hover {
  border-color: rgba(255, 138, 30, 0.4);
  background: rgba(255, 138, 30, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 138, 30, 0.1);
}

.trust-badge svg {
  width: 36px;
  height: 36px;
  stroke: var(--orange);
  flex-shrink: 0;
}

.trust-badge span {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.2;
}

.trust-badge small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

/* ===== PORTFOLIO / CASE STUDIES ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-image svg {
  width: 60px;
  height: 60px;
  stroke: #fff;
  stroke-width: 1.5;
  opacity: 0.85;
}

.portfolio-content {
  padding: 28px;
}

.portfolio-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.portfolio-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--main-text);
  line-height: 1.4;
}

.portfolio-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
}

.portfolio-results {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.portfolio-results .result {
  font-size: 0.8rem;
  color: #555;
}

.portfolio-results .result strong {
  color: var(--purple);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

.portfolio-cta {
  text-align: center;
  margin-top: 40px;
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--main-text);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.8rem;
  color: #888;
}

.reviews-cta {
  text-align: center;
  margin-top: 48px;
}

.reviews-cta p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
}

/* ===== PAYMENT METHODS ===== */
.payment-methods-section {
  padding: 80px 0;
  background: var(--dark-bg);
  color: #fff;
}

.payment-methods-section .section-title {
  color: #fff;
}

.payment-methods-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.payment-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}

.payment-method-card:hover {
  border-color: rgba(255, 138, 30, 0.4);
  background: rgba(255, 138, 30, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 138, 30, 0.1);
}

.payment-method-card svg {
  width: 40px;
  height: 40px;
  stroke: var(--orange);
  flex-shrink: 0;
}

.payment-method-card span {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
}

.payment-method-card small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.3;
}

/* ===== RESPONSIVE — NEW SECTIONS ===== */
@media (max-width: 1024px) {
  .trust-badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .payment-methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .trust-badge {
    padding: 16px 12px;
  }
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .payment-method-card {
    padding: 20px 12px;
  }
}

@media (max-width: 480px) {
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .payment-methods-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== SERVICE PAGES — NAV VARIANT (nav-container / nav-menu) ===== */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-menu .nav-link:hover {
  color: var(--orange);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 0;
  list-style: none;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  color: var(--orange);
  background: rgba(255, 138, 30, 0.06);
}

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

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--dark-bg);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 138, 30, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(139, 45, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1,
.page-header .page-title {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.page-header h1 .gradient-text,
.page-header .page-title .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p,
.page-header .page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  position: relative;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

/* ===== BANKING / PRICING SECTIONS ===== */
.banking-section,
.pricing-section,
.additional-services-section,
.why-choose-section,
.important-note-section {
  padding: 80px 0;
}

.banking-section:nth-child(odd),
.pricing-section:nth-child(odd) {
  background: var(--dark-bg);
}

.banking-section:nth-child(even),
.pricing-section:nth-child(even) {
  background: var(--dark-bg);
}

.additional-services-section {
  background: #fff;
}

.why-choose-section {
  background: var(--dark-bg);
  color: #fff;
}

.important-note-section {
  background: var(--light-bg);
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 138, 30, 0.3);
}

.pricing-card.popular {
  border: 2px solid var(--orange);
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(255, 138, 30, 0.15);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-5px);
}

.popular-badge {
  background: var(--gradient);
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.pricing-header {
  padding: 32px 28px 24px;
  text-align: center;
}

.pricing-name {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-price .currency {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--purple);
}

.pricing-price .amount {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pricing-price .period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.pricing-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.pricing-features {
  list-style: none;
  padding: 0 28px 28px;
  margin: 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--orange);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  display: block;
  margin: 0 28px 28px;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 138, 30, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-outline:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

/* Additional services table */
.additional-services-section .container {
  max-width: 900px;
}

.additional-services-section table {
  width: 100%;
  border-collapse: collapse;
}

.additional-services-section th,
.additional-services-section td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.additional-services-section th {
  background: var(--dark-bg);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.additional-services-section td:first-child {
  font-weight: 500;
  color: var(--main-text);
}

.additional-services-section td:last-child {
  font-weight: 600;
  color: var(--purple);
}

.additional-services-section tr:hover td {
  background: rgba(139, 45, 255, 0.03);
}

/* Features / Why Choose Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(255, 138, 30, 0.3);
  transform: translateY(-3px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 138, 30, 0.2), rgba(139, 45, 255, 0.2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon i {
  font-size: 1.2rem;
  color: var(--orange);
}

.feature-card h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Important note */
.note-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 2px solid #f59e0b;
  border-radius: 16px;
  padding: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.note-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.note-icon i {
  font-size: 1.2rem;
  color: #f59e0b;
}

.note-content h3 {
  font-size: 1.1rem;
  color: var(--main-text);
  margin-bottom: 8px;
}

.note-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* CTA content variant */
.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Contact info list (used in old footers) */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-info li i {
  color: var(--orange);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE — SERVICE PAGES ===== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .pricing-card.popular {
    transform: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .note-card {
    flex-direction: column;
    text-align: center;
  }
  .page-header h1,
  .page-header .page-title {
    font-size: 2rem;
  }
}
