/* =========================
 ROOT VARIABLES
========================= */
:root {
  --bg-white: #ffffff;
  --primary: #2563eb;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border-light: #e5e7eb;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
  --radius: 12px;
}

/* =========================
 GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* =========================
 CONTAINER
========================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}

/* =========================
 HEADER / NAVBAR
========================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo img {
  height: 36px;
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
}
















/* =====================================================
   YASH.DEV – GLOBAL DESIGN SYSTEM
   Theme: Minimal Professional Business
===================================================== */

/* =========================
 CSS VARIABLES (DESIGN TOKENS)
========================= */
:root {
  /* Colors */
  --white: #ffffff;
  --dark: #0f172a;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --border-light: #e5e7eb;

  --primary: #2563eb;
  --primary-dark: #1e40af;

  /* Typography */
  --font-main: 'Inter', sans-serif;

  /* Layout */
  --container-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);

  /* Animation */
  --transition: all 0.25s ease;
}

/* =========================
 RESET & BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* =========================
 CONTAINER SYSTEM
========================= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
 TYPOGRAPHY SYSTEM
========================= */
h1, h2, h3, h4, h5 {
  margin: 0 0 12px;
  font-weight: 600;
  color: var(--dark);
}

h1 {
  font-size: 48px;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
}

.section-header {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-header p {
  margin-top: 12px;
  font-size: 18px;
  color: var(--gray-500);
}

/* =========================
 SECTION SPACING
========================= */
.section {
  padding: 100px 0;
}

.section-light {
  background: #f9fafb;
}

/* =========================
 BUTTON SYSTEM
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border: 1px solid var(--gray-300);
  color: var(--dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

/* =========================
 HERO SECTION
========================= */
.hero-section {
  padding-top: 160px;
  padding-bottom: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 18px;
  margin: 24px 0 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* =========================
 SERVICES
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 36px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  background: #fff;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* =========================
 FEATURES
========================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  padding: 32px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

/* =========================
 WORK / PORTFOLIO
========================= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: #fff;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.work-card img {
  width: 100%;
  display: block;
}

.work-info {
  padding: 20px;
}

.work-info span {
  font-size: 13px;
  color: var(--gray-500);
}

/* =========================
 PRICING
========================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: #fff;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.price {
  font-size: 32px;
  font-weight: 700;
  margin: 16px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card li {
  margin-bottom: 10px;
  color: var(--gray-700);
}

/* =========================
 CTA SECTION
========================= */
.cta-section {
  padding: 120px 0;
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p {
  color: #cbd5e1;
  margin: 16px 0 32px;
}

/* =========================
 FOOTER (BASIC – WILL UPGRADE)
========================= */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
  color: var(--gray-500);
}


/* =========================
 HERO – VISUAL UPGRADE
========================= */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 170px;
  padding-bottom: 120px;
}

.hero-bg-shape {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-title {
  max-width: 620px;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  max-width: 560px;
  font-size: 18px;
  margin: 22px 0 26px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  font-size: 14px;
  color: var(--gray-500);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Right visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.hero-image-wrapper:hover {
  transform: translateY(-6px);
}

.hero-image-wrapper img {
  width: 100%;
  display: block;
}
/* =========================
 SERVICES – PREMIUM UPGRADE
========================= */
.service-card.premium {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: #ffffff;
  transition: var(--transition);
}

.service-card.premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  margin-bottom: 18px;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-points li {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.service-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 12px;
}/* =========================
 TRUST & CREDIBILITY SECTION
========================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.trust-card h3 {
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 15px;
  line-height: 1.6;
}
/* =========================
 TRUST & CREDIBILITY SECTION
========================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.trust-card h3 {
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 15px;
  line-height: 1.6;
}
/* =========================
 PRICING – CONVERSION UPGRADE
========================= */
.pricing-card {
  position: relative;
}

.pricing-desc {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 18px;
}

.pricing-card ul {
  margin-bottom: 24px;
}

.pricing-card li {
  font-size: 14px;
  color: var(--gray-700);
}

.delivery {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.pricing-btn {
  width: 100%;
  text-align: center;
}

/* Featured Plan */
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* Maintenance Note */
.pricing-note {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--gray-600);
}

.pricing-note span {
  display: block;
  margin-top: 6px;
  color: var(--gray-500);
}
/* =========================
 PORTFOLIO – VISUAL AUTHORITY
========================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Image */
.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.05);
}

/* Badge */
.portfolio-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
}

/* Content */
.portfolio-content {
  padding: 24px;
}

.portfolio-content h3 {
  margin-bottom: 10px;
}

.portfolio-content p {
  font-size: 15px;
  margin-bottom: 16px;
}

/* Tags */
.portfolio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.portfolio-tags span {
  font-size: 12px;
  padding: 4px 10px;
  background: #f1f5f9;
  color: var(--gray-600);
  border-radius: 999px;
}
/* =========================
 CONVERSION CTA STRIP
========================= */
.conversion-strip {
  padding: 80px 0;
  background: var(--dark);
}

.conversion-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.conversion-text {
  max-width: 600px;
}

.conversion-text h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 12px;
}

.conversion-text p {
  color: #cbd5e1;
  font-size: 16px;
}

.conversion-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Button override for dark bg */
.conversion-strip .btn-outline {
  border-color: #475569;
  color: #ffffff;
}

.conversion-strip .btn-outline:hover {
  background: #ffffff;
  color: var(--dark);
}
/* =========================
 FOOTER – TRUST & POLISH
========================= */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Contact */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-whatsapp {
  display: inline-block;
  margin-bottom: 14px;
  padding: 10px 18px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.footer-email {
  display: block;
  font-size: 13px;
  color: #94a3b8;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #94a3b8;
}
/* =========================
 FOOTER SOCIAL LINKS
========================= */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1e293b;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
}













































/* =========================
 ABOUT PAGE STYLES
========================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* Highlights */
.about-highlights {
  display: grid;
  gap: 20px;
}

.highlight-box {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.highlight-box h4 {
  margin-bottom: 10px;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  padding: 32px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #ffffff;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}













/* =========================
 ABOUT HERO – PREMIUM
========================= */
.about-hero {
  position: relative;
  padding: 160px 0 110px;
  overflow: hidden;
  background: #ffffff;
}

.about-hero-bg {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.about-hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.about-hero-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-hero-title span {
  color: var(--primary);
}

.about-hero-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: 28px;
}

.about-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--gray-500);
}
/* =========================
 ABOUT HERO – WITH IMAGE
========================= */
.about-hero {
  position: relative;
  padding: 160px 0 120px;
  background: #ffffff;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.about-hero-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-hero-title span {
  color: var(--primary);
}

.about-hero-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 620px;
  margin-bottom: 26px;
}

.about-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--gray-500);
}

/* Image */
.about-hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}



/* =========================
 ABOUT – VISUAL CONTENT GRID
========================= */
.about-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  padding: 36px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-card h3 {
  margin-bottom: 14px;
}

.about-card p {
  font-size: 15px;
  color: var(--gray-700);
}



/* =========================
 PROCESS SECTION
========================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.process-step {
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #ffffff;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}




/* =========================
 CONTACT PAGE
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.contact-form-box,
.contact-info-box {
  padding: 40px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.contact-note {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

/* Form */
.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* Success */
.form-success {
  text-align: center;
  padding: 40px;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact Info */
.contact-whatsapp {
  display: inline-block;
  margin: 20px 0;
  padding: 12px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.contact-details span {
  font-size: 13px;
  color: var(--gray-500);
}
/* =========================
 ADVANCED CONTACT PAGE
========================= */
.contact-advanced-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-info-panel,
.contact-form-panel {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
}

/* Info panel */
.contact-info-text {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-item span {
  font-size: 14px;
  color: var(--gray-600);
}

.contact-item a {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
}

/* Socials */
.contact-socials {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

.contact-socials a {
  font-size: 14px;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-socials a:hover {
  color: var(--primary);
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}




















/* =========================
 SERVICES PAGE
========================= */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.service-box h3 {
  margin-bottom: 12px;
}

.service-box p {
  margin-bottom: 18px;
  font-size: 15px;
}

.service-box ul {
  padding-left: 18px;
}

.service-box li {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--gray-700);
}
/* =========================
 SERVICES – ADVANCED
========================= */
.services-advanced-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-advanced-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: inline-block;
}

.service-desc {
  font-size: 15px;
  margin-bottom: 18px;
}

.service-advanced-card ul {
  padding-left: 18px;
  margin-bottom: 18px;
}

.service-advanced-card li {
  font-size: 14px;
  margin-bottom: 6px;
}

.service-outcome {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* Who it's for */
.services-fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fit-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 16px;
  text-align: center;
  font-size: 14px;
}
/* =========================
 SERVICE CASE STUDIES
========================= */
.service-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-case {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
}

.service-case-header {
  margin-bottom: 20px;
}

.case-tag {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.case-content {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.case-block h4 {
  margin-bottom: 6px;
}

.case-block p {
  font-size: 15px;
}

.case-features {
  padding-left: 18px;
  margin-bottom: 14px;
}

.case-features li {
  font-size: 14px;
  margin-bottom: 6px;
}

.case-meta {
  font-size: 13px;
  color: var(--gray-500);
}
/* =========================
 SERVICES HERO – MODERN
========================= */
.services-hero {
  position: relative;
  padding: 170px 0 120px;
  background: #ffffff;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 480px;
  height: 480px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.services-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.services-hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.services-hero-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.services-hero-title span {
  color: var(--primary);
}

.services-hero-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 34px;
}

.services-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.services-hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}







/* =========================
 SERVICES OVERVIEW
========================= */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-overview-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.service-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.service-overview-card h3 {
  margin-bottom: 10px;
}

.service-overview-card p {
  font-size: 15px;
  color: var(--gray-600);
}.services-hero-trust {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--gray-500);
}
/* =========================
 SERVICE DETAIL SECTIONS
========================= */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-detail-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-detail-content h3 {
  margin-bottom: 18px;
}

.service-detail-block {
  margin-bottom: 16px;
}

.service-detail-block h4 {
  margin-bottom: 6px;
}

.service-detail-list {
  padding-left: 18px;
  margin: 20px 0;
}

.service-detail-list li {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.service-timeline {
  font-size: 13px;
  color: var(--gray-500);
}







/* =========================
 WHO THIS IS FOR / NOT FOR
========================= */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.fit-card {
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: #ffffff;
}

.fit-card h3 {
  margin-bottom: 20px;
}

.fit-card ul {
  padding-left: 18px;
}

.fit-card li {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--gray-700);
}

/* For */
.fit-card.for {
  border-left: 4px solid var(--primary);
}

/* Not For */
.fit-card.not-for {
  border-left: 4px solid #94a3b8;
}












/* =========================
 WORK PAGE
========================= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.work-card img {
  width: 100%;
  display: block;
}

.work-card-content {
  padding: 24px;
}

.work-tag {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* Case Study */
.work-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.work-detail-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.work-detail-content h4 {
  margin-top: 18px;
  margin-bottom: 6px;
}

.work-features {
  margin-top: 18px;
  padding-left: 18px;
}

.work-features li {
  font-size: 14px;
  margin-bottom: 6px;
}




/* =========================
 WORK HERO – WITH IMAGE
========================= */
.work-hero {
  position: relative;
  padding: 170px 0 120px;
  background: #ffffff;
  overflow: hidden;
}

.work-hero-bg {
  position: absolute;
  top: -140px;
  left: -140px;
  width: 480px;
  height: 480px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.work-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.work-hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.work-hero-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.work-hero-title span {
  color: var(--primary);
}

.work-hero-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
}

.work-hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
/* =========================
 WORK HERO ACTIONS
========================= */
.work-hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}








































/* =========================
 PRICING PAGE
========================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
}

.pricing-card ul {
  padding-left: 18px;
  margin: 20px 0;
}

.pricing-card li {
  font-size: 14px;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
}

.pricing-desc {
  font-size: 15px;
  color: var(--gray-600);
}

.pricing-meta {
  font-size: 13px;
  color: var(--gray-500);
  display: block;
  margin-bottom: 20px;
}

.pricing-btn {
  width: 100%;
  text-align: center;
}

.featured {
  border: 2px solid var(--primary);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* Maintenance */
.maintenance-box {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
}

.maintenance-box ul {
  padding-left: 18px;
  margin-top: 20px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
}
/* =========================
 PRICING UPGRADE
========================= */
.pricing-hero {
  padding: 160px 0 120px;
  text-align: center;
  background: #ffffff;
  position: relative;
}

.pricing-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37,99,235,0.1);
  color: var(--primary);
  font-size: 14px;
}

.pricing-title {
  font-size: 48px;
  margin-bottom: 18px;
}

.pricing-title span { color: var(--primary); }

.pricing-subtitle {
  font-size: 18px;
  color: var(--gray-600);
}

.price {
  font-size: 34px;
  font-weight: 700;
  margin: 12px 0;
}

.plan-desc {
  font-size: 15px;
  color: var(--gray-600);
}

.full-btn {
  width: 100%;
  text-align: center;
}

.popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 14px;
  border: 1px solid var(--border-light);
  text-align: center;
}
/* =========================
 PRICING COMPARISON – PRO UI
========================= */
.pricing-compare {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #ffffff;
}

/* Columns */
.compare-column {
  border-left: 1px solid var(--border-light);
}

.compare-column:first-child {
  border-left: none;
}

/* Header */
.compare-header {
  padding: 24px;
  font-weight: 600;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

/* Feature column */
.compare-column.features .compare-header {
  text-align: left;
}

.compare-column.features .compare-row {
  text-align: left;
  font-weight: 500;
}

/* Rows */
.compare-row {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  font-size: 15px;
}

/* Highlight Business */
.compare-column.highlighted {
  background: #f8faff;
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.compare-badge {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #fff;
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Icons */
.compare-row:contains("✔") {
  font-weight: 700;
}

/* Hover clarity */
.compare-row:hover {
  background: rgba(37, 99, 235, 0.05);
}
/* =========================
 MAINTENANCE – PREMIUM UI
========================= */
.maintenance-section {
  background: #ffffff;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.maintenance-content h3 {
  margin-bottom: 14px;
}

.maintenance-content p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.maintenance-features {
  padding-left: 18px;
}

.maintenance-features li {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--gray-700);
}

/* Card */
.maintenance-card {
  background: #f8faff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.maintenance-badge {
  display: inline-block;
  font-size: 12px;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.maintenance-price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 6px;
}

.maintenance-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-600);
}

.maintenance-note {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
}
/* =========================
 TESTIMONIALS – SOCIAL PROOF
========================= */
.testimonials-section {
  background: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info strong {
  display: block;
  font-size: 14px;
}

.author-info span {
  font-size: 13px;
  color: var(--gray-500);
}

.testimonial-note {
  margin-top: 30px;
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
}
/* =========================
 WORK VALUES
========================= */
.work-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-value {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
}

.work-value h4 {
  margin-bottom: 10px;
}
/* =========================
 CASE STUDY – ENHANCED
========================= */
.case-section {
  margin-bottom: 22px;
}

.case-section h4 {
  margin-bottom: 6px;
  font-size: 16px;
}

.case-section p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* Process list */
.case-process,
.case-outcomes {
  padding-left: 18px;
}

.case-process li,
.case-outcomes li {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--gray-700);
}

/* Tech stack */
.case-tech {
  margin-top: 20px;
}

.case-tech span {
  display: inline-block;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}
/* =========================
 CASE STUDY – ENHANCED
========================= */
.case-section {
  margin-bottom: 22px;
}

.case-section h4 {
  margin-bottom: 6px;
  font-size: 16px;
}

.case-section p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* Process list */
.case-process,
.case-outcomes {
  padding-left: 18px;
}

.case-process li,
.case-outcomes li {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--gray-700);
}

/* Tech stack */
.case-tech {
  margin-top: 20px;
}

.case-tech span {
  display: inline-block;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}
/* =========================
 WORK CASE STUDY – FULL SAFE CSS
========================= */

.work-case-section {
  background: #ffffff;
}

.work-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image */
.work-case-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Content */
.work-case-content h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.work-case-block {
  margin-bottom: 22px;
}

.work-case-block h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #0f172a;
}

.work-case-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

.work-case-block ul {
  padding-left: 18px;
}

.work-case-block li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #334155;
}

/* Tech tag */
.work-case-tech {
  margin-top: 20px;
  display: inline-block;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .work-case-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
