@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@500;600;700&display=swap');

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
  --color-white: #ffffff;
  --color-orange: #FF6A00;
  --color-yellow: #FFA400;
  --color-blue: #0066FF;
  --color-navy: #0D1B3D;
  --color-gray-light: #F2F4F7;
  --color-gray-dark: #667085;
  --color-border: #E4E7EC;

  --gradient-orange: linear-gradient(135deg, #FF6A00 0%, #FFA400 100%);
  --gradient-orange-hover: linear-gradient(135deg, #E05D00 0%, #E09000 100%);
  --gradient-blue: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
  --gradient-navy: linear-gradient(135deg, #0D1B3D 0%, #1A2E5C 100%);
  --gradient-radial: radial-gradient(circle at top right, rgba(255, 106, 0, 0.08) 0%, rgba(0, 102, 255, 0.08) 50%, transparent 100%);

  --shadow-sm: 0 4px 12px rgba(13, 27, 61, 0.03);
  --shadow-md: 0 10px 24px rgba(13, 27, 61, 0.05);
  --shadow-lg: 0 20px 40px rgba(13, 27, 61, 0.08);
  --shadow-premium: 0 24px 60px rgba(13, 27, 61, 0.1);
  --shadow-orange: 0 8px 20px rgba(255, 106, 0, 0.2);
  --shadow-blue: 0 8px 20px rgba(0, 102, 255, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- BASIC RESET & STYLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-navy);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-navy);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
}

p {
  color: var(--color-gray-dark);
  font-size: 1.05rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--color-gray-light);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-center {
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--color-orange);
  margin-bottom: 0.75rem;
}

.badge-blue {
  background-color: rgba(0, 102, 255, 0.1);
  color: var(--color-blue);
}

/* --- SECTION HEADER --- */
.section-header {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 1.25rem;
}

.section-header p {
  font-size: 1.15rem;
}

/* --- DECORATIVE PATTERNS & BACKGROUNDS --- */
.gradient-overlay-bg {
  background: var(--gradient-radial);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -2;
}

.dot-grid-pattern {
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(var(--color-navy) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.07;
  pointer-events: none;
}

.dot-grid-top-right {
  top: 50px;
  right: -50px;
}

.dot-grid-bottom-left {
  bottom: 50px;
  left: -50px;
}

.circle-line-pattern {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px dashed rgba(0, 102, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
  animation: spin 60s linear infinite;
  z-index: -1;
}

.circle-line-pattern::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  bottom: 50px;
  border: 1px solid rgba(255, 106, 0, 0.1);
  border-radius: 50%;
}

/* --- FLOATING 3D SHAPES --- */
.floating-shapes-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: float-around 20s infinite ease-in-out;
}

.shape-1,
.shape-2,
.shape-3 {
  display: none;
}

/* replaced by geo-ring gradient rings */

/* Solid floating elements */
.floating-element {
  position: absolute;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.floater-orange-cone {
  width: 60px;
  height: 60px;
  background: var(--gradient-orange);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: 25%;
  right: 12%;
  opacity: 0.85;
  transform: rotate(15deg);
  animation-delay: 0.5s;
  filter: drop-shadow(0 10px 15px rgba(255, 106, 0, 0.3));
}

.floater-blue-sphere {
  width: 50px;
  height: 50px;
  background: var(--gradient-blue);
  border-radius: 50%;
  bottom: 25%;
  left: 8%;
  opacity: 0.9;
  animation-delay: 1.5s;
  filter: drop-shadow(0 10px 15px rgba(0, 102, 255, 0.3));
}

.floater-yellow-torus {
  width: 40px;
  height: 40px;
  border: 12px solid var(--color-yellow);
  border-radius: 50%;
  top: 70%;
  right: 25%;
  opacity: 0.8;
  animation-delay: 2.2s;
  filter: drop-shadow(0 8px 12px rgba(255, 164, 0, 0.25));
}

/* --- GLASSMORPHISM CARDS --- */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(255, 106, 0, 0.2);
}

/* --- PREMIUM INTERACTION SHAPES --- */
.accent-diagonal-line {
  position: absolute;
  width: 120px;
  height: 6px;
  background: var(--gradient-orange);
  border-radius: var(--radius-full);
}

/* --- NAVIGATION NAVBAR --- */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 10000;
  transition: var(--transition-normal);
}

.navbar-header.sticky {
  background: rgba(255, 255, 255, 0.97);
  height: 70px;
  box-shadow: 0 4px 24px rgba(13, 27, 61, 0.08);
  border-bottom: 1px solid rgba(13, 27, 61, 0.05);
  /* No backdrop-filter here — it breaks position:fixed children on mobile */
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-navy);
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
  opacity: 0.8;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--color-orange);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-orange);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* --- BUTTONS --- */
.btn {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6A00 0%, #FF8A00 100%);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E05D00 0%, #FF7A00 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.4);
}

.btn-secondary {
  background-color: var(--color-gray-light);
  color: var(--color-navy);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-navy {
  background: var(--gradient-navy);
  color: var(--color-white);
}

.btn-navy:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--color-navy);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

/* --- FOOTER --- */
.footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 6rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-info-col h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-info-col p {
  color: #a3b3cc;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--gradient-orange);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  font-family: var(--font-headings);
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-orange);
}

.footer-links-list li {
  margin-bottom: 1rem;
}

.footer-links-list a {
  color: #a3b3cc;
  font-size: 0.95rem;
}

.footer-links-list a:hover {
  color: var(--color-orange);
  padding-left: 5px;
}

.footer-newsletter-col h4 {
  color: var(--color-white);
}

.footer-newsletter-col p {
  color: #a3b3cc;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition-normal);
}

.newsletter-input::placeholder {
  color: #5d6e85;
}

.newsletter-input:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #5d6e85;
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-links a:hover {
  color: var(--color-white);
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes float-around {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

/* --- COMPONENT STYLES FOR CORE SECTIONS --- */

/* Hero Section */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
}

.hero-content h1 {
  font-size: 4.25rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content h1 span {
  background: linear-gradient(to right, #FF6A00, #0066FF, #FF6A00);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 550px;
  color: #475569;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ambient Background Glow */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(255, 106, 0, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
  animation: pulse-glow 6s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.hero-visual-3d {
  width: 320px;
  height: 320px;
  background: #fff;
  border: 1px solid rgba(13, 27, 61, 0.07);
  border-radius: 20px;
  box-shadow:
    0 4px 6px rgba(13, 27, 61, 0.04),
    0 12px 32px rgba(13, 27, 61, 0.08),
    0 32px 64px rgba(13, 27, 61, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  animation: card-float 7s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes card-float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(0.4deg);
  }

  50% {
    transform: translateY(-14px) rotate(0deg);
  }

  75% {
    transform: translateY(-6px) rotate(-0.4deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.hero-visual-3d img {
  width: 70%;
  height: auto;
  animation: pulse-logo 4s ease-in-out infinite alternate;
}

.hero-mockup-badge {
  position: absolute;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  box-shadow:
    0 4px 8px rgba(13, 27, 61, 0.06),
    0 12px 28px rgba(13, 27, 61, 0.1),
    0 0 0 1px rgba(13, 27, 61, 0.05);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 12;
}

.hero-mockup-badge.badge-1 {
  top: 10%;
  left: 0%;
  animation: badge-float-a 5s ease-in-out infinite;
}

.hero-mockup-badge.badge-2 {
  bottom: 10%;
  right: 0%;
  animation: badge-float-b 6.5s ease-in-out infinite;
}

@keyframes badge-float-a {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  33% {
    transform: translateY(-8px) translateX(2px);
  }

  66% {
    transform: translateY(-4px) translateX(-2px);
  }
}

@keyframes badge-float-b {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  40% {
    transform: translateY(-10px) translateX(-3px);
  }

  70% {
    transform: translateY(-5px) translateX(2px);
  }
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-icon-blue {
  background-color: rgba(0, 102, 255, 0.1);
  color: var(--color-blue);
}

.badge-text h5 {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-text p {
  font-size: 0.75rem;
}

@keyframes pulse-logo {
  from {
    transform: scale(0.95) rotate(-2deg);
  }

  to {
    transform: scale(1.05) rotate(3deg);
  }
}

/* Trust Section */
.trust-section {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background-color: rgba(242, 244, 247, 0.3);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item h3 {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Why Kraftor Section */
.why-card {
  text-align: left;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  transition: var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-orange);
}

.why-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 106, 0, 0.08);
  color: var(--color-orange);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.why-card:nth-child(even) .why-icon {
  background-color: rgba(0, 102, 255, 0.08);
  color: var(--color-blue);
}

.why-card h4 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

/* Service Card (Grid in homepage/services) */
.services-grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card-main {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service-card-main:hover::before {
  transform: scaleX(1);
}

.service-card-main:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 106, 0, 0.15);
}

.service-card-main h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card-main p {
  margin-bottom: 2rem;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  color: var(--color-orange);
  margin-bottom: 2rem;
}

.service-card-main:nth-child(even) .service-card-icon {
  color: var(--color-blue);
}

.service-card-main:nth-child(even)::before {
  background: var(--gradient-blue);
}

.learn-more-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-main:nth-child(even) .learn-more-link {
  color: var(--color-blue);
}

/* Process Section */
.process-diagram {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  top: 45px;
  left: 50px;
  right: 50px;
  height: 4px;
  background-color: var(--color-gray-light);
  z-index: 1;
}

.process-progress-line {
  position: absolute;
  top: 45px;
  left: 50px;
  width: 75%;
  /* Simulating progress to development step */
  height: 4px;
  background: var(--gradient-orange);
  z-index: 2;
  transition: width 1.5s ease;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
  width: 150px;
}

.process-step-num {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 4px solid var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-gray-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.process-step.active .process-step-num {
  border-color: var(--color-orange);
  color: var(--color-orange);
  box-shadow: var(--shadow-orange);
  transform: scale(1.1);
}

.process-step.active:nth-child(even) .process-step-num {
  border-color: var(--color-blue);
  color: var(--color-blue);
  box-shadow: var(--shadow-blue);
}

.process-step h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.process-step p {
  font-size: 0.85rem;
}

/* Call To Action Box (CTA) */
.cta-banner {
  background: var(--gradient-navy);
  border-radius: var(--radius-xl);
  padding: 5rem 4rem;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 3rem;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #a3b3cc;
  font-size: 1.25rem;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-normal);
  background-color: var(--color-white);
}

.form-control:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

.form-control-blue:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Custom Grid Portfolio cards */
.portfolio-grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.portfolio-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.2);
}

.portfolio-img-container {
  height: 320px;
  background-color: var(--color-gray-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-radial);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-img-placeholder {
  transform: scale(1.05);
}

.portfolio-card-content {
  padding: 2.5rem;
}

.portfolio-card-category {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.portfolio-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.portfolio-card p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  background-color: var(--color-white);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--color-orange);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--color-white);
}

.faq-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-icon-arrow {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-normal);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal);
  padding: 0 2rem;
  color: var(--color-gray-dark);
  font-size: 0.95rem;
}

.faq-item.active .faq-content {
  padding: 0 2rem 1.5rem 2rem;
  max-height: 200px;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  /* Controlled by JS */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background-color: #1a1a1a; /* Dark background matching Image 3 */
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: translateY(30px);
  transition: transform var(--transition-normal);
  padding: 3rem;
  color: white;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.portfolio-modal-close,
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.portfolio-modal-close:hover,
.modal-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

/* --- MOBILE STYLING & MEDIA QUERIES --- */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .grid-5,
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .portfolio-grid-list,
  .services-grid-list {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    z-index: 10000;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    gap: 2.5rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--color-border);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-actions {
    display: none;
  }

  /* Mobile bottom bar is injected by JS into body — see main.js kf-mobile-nav-bar */
  #kf-mobile-nav-bar .btn-primary {
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    height: 380px;
  }

  .hero-visual-3d {
    width: 240px;
    height: 240px;
  }

  .hero-mockup-badge {
    padding: 0.75rem 1rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-diagram {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2rem;
    gap: 2.5rem;
  }

  .process-line {
    top: 0;
    bottom: 0;
    left: 65px;
    width: 4px;
    height: 100%;
  }

  .process-progress-line {
    top: 0;
    left: 65px;
    width: 4px;
    height: 60%;
  }

  .process-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    width: 100%;
    gap: 1.5rem;
  }

  .process-step-num {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
    border-width: 3px;
  }

  .process-step h4 {
    margin-top: 0;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 576px) {

  .grid-5,
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  h1 {
    font-size: 2.25rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  .hero-content h1 {
    font-size: 2.25rem !important;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* --- STRIPE-LIKE DROPDOWN MENUS --- */
.chevron-down {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 3px;
  transition: transform var(--transition-fast);
}

.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px) scale(0.95);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(13, 27, 61, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  min-width: 320px;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border-left: 1px solid rgba(13, 27, 61, 0.08);
  border-top: 1px solid rgba(13, 27, 61, 0.08);
}

/* Hover triggers active state */
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(10px) scale(1);
}

.nav-item-dropdown:hover .chevron-down {
  transform: rotate(-135deg) translateY(-2px);
}

.dropdown-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  text-align: left;
}

.dropdown-item:hover {
  background-color: var(--color-gray-light);
}

.dropdown-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-item-icon.orange {
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--color-orange);
}

.dropdown-item-icon.blue {
  background-color: rgba(0, 102, 255, 0.1);
  color: var(--color-blue);
}

.dropdown-item-icon.navy {
  background-color: rgba(13, 27, 61, 0.1);
  color: var(--color-navy);
}

.dropdown-item-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-navy);
  font-family: var(--font-headings);
}

.dropdown-item-content p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--color-gray-dark);
  margin: 0;
}

/* Scroll reveal animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile adjustments for dropdowns */
@media (max-width: 768px) {
  .nav-item-dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-item-dropdown .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.5rem 1rem 0 1rem;
    min-width: 100%;
    display: none;
    /* Controlled by JS toggle on mobile */
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-item-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 0.5rem;
  }

  .dropdown-item-icon {
    width: 30px;
    height: 30px;
  }

  .dropdown-item-content h4 {
    font-size: 0.9rem;
  }
}

/* --- HEADER PROFILE BUTTON --- */
.profile-box-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.1) 0%, rgba(255, 106, 0, 0.03) 100%);
  color: #FF6A00;
  border: 1px solid rgba(255, 106, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.profile-box-btn:hover {
  background: linear-gradient(135deg, #FF6A00 0%, #FF8A00 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.25);
  border-color: transparent;
}

.profile-box-img {
  display: none;
}



/* === NEW SECTIONS: TICKER, MARQUEE, OFFERS, COUNT-UP === */

/* Ticker Strip */
.ticker-strip {
  background: var(--color-navy);
  overflow: hidden;
  padding: 1.25rem 0;

  margin-top: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 15px 30px rgba(13, 27, 61, 0.15);
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: ticker 30s linear infinite;
  align-items: center;
}

.ticker-track span {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  white-space: nowrap;
}

.ticker-track .ticker-icon {
  color: var(--color-orange);
  font-size: 1.25rem;
  animation: pulse-star 2s infinite alternate;
}

@keyframes pulse-star {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.1);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

/* Logo Marquee */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
  padding: 1rem 0;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(13, 27, 61, 0.4);
  white-space: nowrap;
  filter: grayscale(100%);
  transition: all 0.3s;
  cursor: default;
}

.marquee-logo svg {
  color: rgba(13, 27, 61, 0.6);
  transition: color 0.3s;
}

.marquee-logo:hover {
  color: var(--color-orange);
  filter: grayscale(0%);
  transform: scale(1.05);
}

.marquee-logo:hover svg {
  color: var(--color-orange);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Hero rotating word */
#hero-rotating-word {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Count-up animation */
.count-up {
  transition: all 0.3s;
}

/* ==================================================
   COMPREHENSIVE RESPONSIVE FIXES (OVERRIDES)
   ================================================== */

/* Tablet & Smaller Desktop (max 1024px) */
@media (max-width: 1024px) {

  .services-grid-list,
  .portfolio-grid-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 4rem;
  }

  .section {
    padding: 4rem 0;
  }
}

/* Tablet (max 768px) */
@media (max-width: 768px) {

  .services-grid-list,
  .portfolio-grid-list,
  .grid-3 {
    grid-template-columns: 1fr !important;
  }

  .hero-content h1 {
    font-size: 2.8rem !important;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-links.active {
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .nav-links.active+.nav-actions {
    display: flex;
    flex-direction: row;
    /* Put them side-by-side */
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 0 2rem;
    z-index: 10001;
  }

  .nav-links.active+.nav-actions .btn {
    flex-grow: 1;
    /* Button takes most of the space */
    width: auto;
    text-align: center;
    justify-content: center;
  }

  .nav-links.active+.nav-actions .profile-box-btn {
    width: 44px !important;
    /* Keep original strict size */
    height: 44px !important;
    flex-shrink: 0;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    height: auto;
    min-height: 400px;
    margin-top: 2rem;
  }

  .hero-visual-3d {
    width: 100% !important;
    max-width: 320px;
  }

  .ticker-track {
    gap: 1.5rem;
  }

  .ticker-track span {
    font-size: 0.8rem;
  }

  .marquee-track {
    gap: 2.5rem;
  }

  .marquee-logo {
    font-size: 0.9rem;
  }
}

/* Mobile (max 576px) */
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.3rem !important;
  }

  .section-header h2 {
    font-size: 1.8rem !important;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    /* 2x2 grid for stats looks better on mobile */
    gap: 1rem !important;
  }

  .trust-item h3 {
    font-size: 2rem !important;
  }

  .offer-banner {
    height: 120px !important;
  }

  .badge {
    font-size: 0.75rem;
  }

  /* Make sure floating badges don't cause horizontal scroll */
  .hero-mockup-badge {
    transform: scale(0.75);
  }

  .badge-1 {
    left: -5px;
  }

  .badge-2 {
    right: 5px;
    bottom: -5px;
  }
}

/* Desktop Specific Utilities */
@media (min-width: 769px) {
  .reverse-row-desktop {
    direction: rtl;
  }

  .content-ltr {
    direction: ltr;
  }
}

/* ==================================================
   CONTACT FORM RESPONSIVE OVERRIDES
   ================================================== */
.premium-contact-card {
  padding: 3rem;
}

@media (max-width: 768px) {
  .premium-contact-card {
    padding: 1.5rem !important;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================
   SPECIAL OFFERS REDESIGN
   ========================================= */

/* Offer Actions (Buttons side-by-side) */
.offer-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.offer-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0.9rem;
}

.offer-actions .btn-outline {
  background: transparent;
  border: 1px solid var(--color-gray-light);
  color: var(--color-navy);
}

.offer-actions .btn-outline:hover {
  background-color: var(--color-gray-light);
  color: var(--color-navy);
  border-color: var(--color-gray);
}

/* Offers Grid & Mobile Slider */
.offers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.offers-grid .offer-card {
  flex: 1 1 300px;
  max-width: 380px;
}

@media (max-width: 768px) {
  .offers-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 1rem 0.5rem 2rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    /* Full bleed on mobile */
  }

  .offers-grid::-webkit-scrollbar {
    height: 4px;
  }

  .offers-grid::-webkit-scrollbar-track {
    background: var(--color-gray-light);
    border-radius: 10px;
  }

  .offers-grid::-webkit-scrollbar-thumb {
    background: var(--color-orange);
    border-radius: 10px;
  }

  .offers-grid .offer-card {
    flex: 0 0 85% !important;
    max-width: none !important;
    scroll-snap-align: center;
  }
}

/* Offer Modal */
.offer-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 61, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.offer-modal-overlay.active {
  opacity: 1;
}

.offer-modal-card {
  background: var(--color-white);
  width: 90%;
  max-width: 450px;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.offer-modal-overlay.active .offer-modal-card {
  transform: translateY(0) scale(1);
}

.offer-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  color: var(--color-gray-dark);
  transition: all 0.3s;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-modal-close:hover {
  color: var(--color-white);
  background: #EF4444;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  font-weight: 600;
  padding: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  color: white;
}


/* =========================================
   PREMIUM WHY KRAFTOR UPGRADE
   ========================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 1rem 0.5rem 2rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    /* Full bleed on mobile */
  }

  .why-grid::-webkit-scrollbar {
    height: 4px;
  }

  .why-grid::-webkit-scrollbar-track {
    background: var(--color-gray-light);
    border-radius: 10px;
  }

  .why-grid::-webkit-scrollbar-thumb {
    background: var(--color-orange);
    border-radius: 10px;
  }

  .why-grid .why-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

/* Premium Card Enhancements */
.why-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.02);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), #FFB75E);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover .why-icon {
  background-color: var(--color-orange);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
}

.why-icon {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: var(--radius-md);
}

.why-card:nth-child(even):hover .why-icon {
  background-color: var(--color-blue);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

/* =========================================
   PREMIUM WHY KRAFTOR UPGRADE
   ========================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 1rem 0.5rem 2rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    /* Full bleed on mobile */
  }

  .why-grid::-webkit-scrollbar {
    height: 4px;
  }

  .why-grid::-webkit-scrollbar-track {
    background: var(--color-gray-light);
    border-radius: 10px;
  }

  .why-grid::-webkit-scrollbar-thumb {
    background: var(--color-orange);
    border-radius: 10px;
  }

  .why-grid .why-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

/* Premium Card Enhancements */
.why-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.02);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), #FFB75E);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover .why-icon {
  background-color: var(--color-orange);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
}

.why-icon {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: var(--radius-md);
}

.why-card:nth-child(even):hover .why-icon {
  background-color: var(--color-blue);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

/* =========================================
   PREMIUM OUR SERVICES UPGRADE
   ========================================= */

@media (max-width: 768px) {

  /* Override the !important stacking in older CSS */
  .services-grid-list {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 1.25rem !important;
    padding: 1rem 0.5rem 2rem 0.5rem !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0 -1rem !important;
  }

  .services-grid-list::-webkit-scrollbar {
    height: 4px;
  }

  .services-grid-list::-webkit-scrollbar-track {
    background: var(--color-gray-light);
    border-radius: 10px;
  }

  .services-grid-list::-webkit-scrollbar-thumb {
    background: var(--color-orange);
    border-radius: 10px;
  }

  .services-grid-list .service-card-main {
    flex: 0 0 85% !important;
    scroll-snap-align: center !important;
    height: auto !important;
  }
}

/* Premium Card Enhancements for Services */
.service-card-main {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.service-card-main p {
  flex-grow: 1;
  /* Pushes the 'Explore Details' link to the bottom for perfect alignment */
}

.service-card-main:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.service-card-main:hover::before {
  transform: scaleX(1);
  /* Trigger the existing top line */
}

.service-card-main .service-card-icon {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-main:hover .service-card-icon {
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 10px 15px rgba(255, 106, 0, 0.2));
}

.service-card-main:nth-child(even):hover .service-card-icon {
  filter: drop-shadow(0 10px 15px rgba(0, 102, 255, 0.2));
}

/* =========================================
   PREMIUM TESTIMONIALS UPGRADE
   ========================================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding: 1rem 0.5rem 2rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    /* Full bleed on mobile */
  }

  .testimonial-grid::-webkit-scrollbar {
    height: 4px;
  }

  .testimonial-grid::-webkit-scrollbar-track {
    background: var(--color-gray-light);
    border-radius: 10px;
  }

  .testimonial-grid::-webkit-scrollbar-thumb {
    background: var(--color-orange);
    border-radius: 10px;
  }

  .testimonial-grid .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: #FFB75E;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-navy);
  font-style: italic;
  margin-bottom: 2.5rem;
  flex-grow: 1;
  /* Pushes author to the bottom */
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: -15px;
  font-size: 4rem;
  color: rgba(255, 106, 0, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 1;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
  border: 2px solid white;
}

.testimonial-meta h5 {
  margin: 0 0 0.2rem 0;
  font-size: 1.1rem;
  color: var(--color-navy);
  font-weight: 700;
}

.testimonial-meta p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-gray);
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.03);
  padding-top: 0.75rem;
}

.company-logo-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}
.company-logo-circle svg {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}

/* =========================================
   TESTIMONIAL MARQUEE
   ========================================= */
.testimonial-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-marquee-wrapper::before,
.testimonial-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.testimonial-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}
.testimonial-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  align-items: stretch;
}

.testimonial-track:hover {
  animation-play-state: paused !important;
}

.track-left {
  animation: scrollLeft 50s linear infinite;
}

.track-right {
  animation: scrollRight 50s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

@keyframes scrollRight {
  0% { transform: translateX(calc(-50% - 1rem)); }
  100% { transform: translateX(0); }
}

.testimonial-marquee-wrapper .testimonial-card {
  width: 400px;
  flex-shrink: 0;
  white-space: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .testimonial-marquee-wrapper .testimonial-card {
    width: 300px;
    padding: 2rem 1.5rem;
  }
  .testimonial-stars {
    margin-bottom: 1rem;
  }
  .testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

/* =========================================
   PREMIUM AMBIENT BACKGROUND (Quiet Luxury)
   ========================================= */

.premium-ambient-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  background-color: #FAFCFF;
  /* Slight off-white to make glows pop */
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
  animation: pulseGlow 8s infinite alternate ease-in-out;
}

.glow-orange {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, rgba(255, 106, 0, 0) 70%);
  top: -150px;
  left: -200px;
}

.glow-blue {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.1) 0%, rgba(0, 82, 204, 0) 70%);
  bottom: -200px;
  right: -100px;
  animation-delay: -4s;
}

.ambient-dot-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(100, 116, 139, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.8;
}

.ambient-glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(1px);
  /* Slight softening of the grid */
  -webkit-backdrop-filter: blur(1px);
}

@keyframes pulseGlow {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.1) translate(20px, 20px);
    opacity: 0.8;
  }
}

/* Ensure text stays above the ambient wrapper */
.hero .container {
  position: relative;
  z-index: 1;
}

/* =========================================
   PREMIUM GEOMETRIC BACKGROUND (Figma Style)
   ========================================= */

.hero-geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 72% 50%, rgba(255, 106, 0, 0.045) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 18% 60%, rgba(0, 102, 255, 0.04) 0%, transparent 70%),
    radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: auto, auto, 32px 32px;
  background-color: #fff;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
}

/* Smaller solid blue circle on the left edge */
.geo-blue {
  width: 120px;
  height: 120px;
  background: var(--color-blue);
  top: 30%;
  left: -60px;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 82, 204, 0.2);
}

/* Crisp dotted grid for structural depth */
.geo-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(#D1D5DB 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
  z-index: 0;
}

/* =========================================
   NEW GEOMETRIC RINGS (Per Image Reference)
   ========================================= */

.geo-ring {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

/* ── PREMIUM GRADIENT RINGS — replace solid circles ── */

/* The hero container needs z-index to sit on top of the background */
.hero .container {
  position: relative;
  z-index: 10;
}

/* Enhancing the primary button with glowing shadow */

.btn-primary {
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4) !important;
  transition: all 0.3s ease !important;
}

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.6) !important;
  transform: translateY(-2px) !important;
}


.geo-ring-right {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6A00, #FFB800);
  opacity: 0.85;
  animation: float-around 20s infinite ease-in-out alternate-reverse;
  z-index: -1;
}


/* Subtle continuous float for the main 3D mockup */
.hero-visual-3d img {
  animation: float 8s ease-in-out infinite;
}

/* Enhancing the floating badges */
.hero-mockup-badge.badge-1 {
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-mockup-badge.badge-2 {
  animation: float 7s ease-in-out infinite;
  animation-delay: 2s;
}

/* Adding premium gradient shine to the hero rotating word */
#hero-rotating-word {
  background: linear-gradient(to right, #FF6A00, #FFB800, #FF6A00);
  background-size: 200% auto;
  color: #FF6A00;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
  display: inline;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}


  to {
    transform: rotate(-360deg);
  }
}

/* Technical floating 'Plus' accents */
.geo-plus {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 1;
  opacity: 0.3;
}

.geo-plus::before,
.geo-plus::after {
  content: '';
  position: absolute;
  background: var(--color-gray-dark);
  border-radius: 2px;
}

.geo-plus::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.geo-plus::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.geo-plus-1 {
  top: 15%;
  right: 45%;
}

.geo-plus-2 {
  bottom: 20%;
  left: 35%;
}

/* Ensure header NEVER gets covered by background shapes when scrolling */
.header {
  position: relative;
  z-index: 9999;
}

/* Ensure header NEVER gets covered by background shapes */
.header {
  position: relative;
  z-index: 9999;
}

/* YOUTUBE OVERRIDES */
.yt-4-col .addons-grid {
  grid-template-columns: repeat(4, 1fr);
}


/* CUSTOM PACKAGE REDESIGN (EXACT PDF MATCH) */

.custom-starting-badge-wrapper {
  display: inline-flex;
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 50px;
}

.cs-label {
  background: #0d1e3d;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
}

.cs-price {
  background: #ff6600;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  padding: 0.5rem 2rem;
  font-size: 1.2rem;
}

/* Left Column Solid Header */
.c-head-solid {
  background: #0d1e3d;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* Right Column Pill Headers with Line */
.c-head-pill-wrapper {
  position: relative;
  text-align: center;
  padding: 1.5rem 0;
  background: white;
}

.c-head-line {
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 2px;
  background: #ff6600;
  z-index: 0;
}

.c-head-pill {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: #0d1e3d;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.5rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  text-transform: uppercase;
}


.custom-checklist,
.custom-benefits,
.custom-pricing-box {
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.c-list {
  padding: 0 2rem 2rem;
}

.c-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: #0d1e3d;
  font-weight: 600;
  cursor: pointer;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.c-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-icon svg {
  width: 100%;
  height: 100%;
}

.custom-chk {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  background: white;
  border-radius: 4px;
  display: inline-block;
}

.c-item input:checked+.custom-chk {
  background: #ff6600;
  border-color: #ff6600;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
}

.b-list {
  padding: 0 2rem 2rem;
}

.b-item {
  font-size: 1.05rem;
  color: #0d1e3d;
  font-weight: 600;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.cp-start {
  color: #64748b;
  font-weight: 600;
}

.cp-price-row {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2rem;
  position: relative;
}

.cp-price {
  font-size: 4.5rem;
  color: #ff6600;
  font-weight: 800;
  line-height: 0.8;
  padding-right: 10px;
}

.cp-dotted-line-ext {
  flex-grow: 1;
  border-bottom: 3px dotted #ff6600;
  position: relative;
  height: 10px;
  margin-bottom: 5px;
}

.cp-dot {
  width: 10px;
  height: 10px;
  background: #ff6600;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: -6.5px;
}

.cp-list {
  list-style: none;
  padding: 0;
}

.cp-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #ff6600;
  border-radius: 50%;
}

.btn-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(to right, #ff8c00, #ff6600);
  color: white;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 2rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.quote-arrow {
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FIXING THE MISSING SVG AND LAYOUT CSS */
.b-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.b-check svg {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.custom-pkg-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.c-item input {
  display: none;
}

/* ==========================================================================
   PREMIUM FLOATING 3D HERO IMAGES
   ========================================================================== */

.hero-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}

.service-hero-img {
  width: 100%;
  max-width: 400px;
  /* Constrain size so it doesn't get too huge */
  height: auto;
  display: block;
  object-fit: contain;
  /* Add a premium soft shadow that respects transparent pixels! */
  filter: drop-shadow(0 20px 30px rgba(255, 102, 0, 0.15)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
  /* Ultra-smooth FAANG level floating animation */
  animation: premiumFloat 6s ease-in-out infinite;
}

@keyframes premiumFloat {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-15px) scale(1.02);
  }

  100% {
    transform: translateY(0px) scale(1);
  }
}

@media (max-width: 992px) {
  .service-hero-img {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .hero-image-wrapper {
    display: none;
    /* Hide on extremely small phones if space is tight, or just shrink it */
  }
}


/* =========================================
   SERVICES DASHBOARD ARCHITECTURE
   ========================================= */

.services-dashboard {
  padding-top: 100px;
  padding-bottom: 4rem;
  background-color: #f8fafc;
  min-height: 100vh;
}

.services-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* SIDEBAR */
.services-sidebar {
  background: var(--color-white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 100px;
}

.sidebar-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.sidebar-header h3 {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
  font-family: 'Poppins', sans-serif;
}

.sidebar-header p {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
}

.services-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-tab-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  border-radius: 0.75rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-gray-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.service-tab-btn:hover {
  background: #f1f5f9;
  color: var(--color-navy);
}

.service-tab-btn.active {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(13, 27, 61, 0.15);
}

.service-tab-btn svg {
  stroke-width: 2.5px;
  opacity: 0.7;
}

.service-tab-btn.active svg {
  opacity: 1;
}

/* CONTENT PANELS */
.services-content {
  background: var(--color-white);
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  overflow: hidden;
  position: relative;
}

.service-panel {
  display: none;
  padding: 2rem;
}

.service-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* GENERAL HEADINGS */
.pdf-main-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--color-navy);
  text-transform: uppercase;
}

.pdf-text-orange {
  color: #ff6600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   TABLE STYLING
   ========================================= */

.pdf-table-wrapper {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: var(--color-white);
}

.pdf-pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pdf-pricing-table thead {
  background: var(--color-navy);
}

.pdf-th-service,
.pdf-th-rate {
  padding: 1.5rem 2rem;
  font-weight: 800;
  color: var(--color-white);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pdf-th-service {
  width: 70%;
}

.pdf-th-rate {
  width: 30%;
}

.pdf-pricing-table tbody tr {
  border-bottom: 1px solid rgba(13, 27, 61, 0.08);
  transition: background 0.2s;
}

.pdf-pricing-table tbody tr:last-of-type {
  border-bottom: none;
}

.pdf-pricing-table tbody tr:nth-child(even) {
  background: #fbfdff;
}

.pdf-td-service,
.pdf-td-rate {
  padding: 1.25rem 2rem;
  font-weight: 500;
}

.pdf-td-service {
  color: var(--color-navy);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.pdf-td-rate {
  color: var(--color-gray-dark);
  font-weight: 600;
}

.premium-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

/* =========================================
   NEW DASHBOARD SPECIALIZED LAYOUT CSS
   ========================================= */

/* Header Area (Title left, Image Center) */
.pdf-header-area {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  padding: 1rem 0;
  position: relative;
}

.pdf-title-block {
  text-align: left;
  margin-bottom: 1.5rem;
}

.pdf-main-heading {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--color-navy);
  margin: 0;
  text-transform: uppercase;
}

.pdf-text-orange {
  color: var(--color-orange);
}

.pdf-image-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.service-hero-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Social Packages Grid */
.social-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.package-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.package-header {
  padding: 1.5rem;
  background: var(--color-navy);
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 4px solid var(--color-orange);
}

.package-header svg {
  margin-bottom: 0.5rem;
  stroke: var(--color-white) !important;
  fill: none !important;
  width: 32px;
  height: 32px;
}

.package-price {
  padding: 1.5rem;
  text-align: center;
  background: rgba(13, 27, 61, 0.03);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-orange);
  border-bottom: 1px solid var(--color-border);
}

.package-features {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.package-features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.package-features li:last-child {
  margin-bottom: 0;
}

/* Addons Grid (YouTube Mgmt, etc.) */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.addon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.addon-icon svg {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}

.addon-text {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1.05rem;
  line-height: 1.3;
}

.addon-price {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gray-dark);
  margin-top: 0.25rem;
}

.s-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-gray-dark);
}

@media (max-width: 1024px) {

  .social-packages-grid,
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .social-packages-grid,
  .addons-grid {
    grid-template-columns: 1fr;
  }
}

/* Web Design Features Bottom Box */
.pdf-bottom-box {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  margin-top: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pdf-bottom-box h3 {
  font-family: var(--font-headings);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 800;
  color: var(--color-white);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pdf-bottom-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center bottom, rgba(255, 106, 0, 0.1) 0%, transparent 70%);
  z-index: 1;
}

/* Premium Icon standard size fix */
.premium-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

/* =========================================
   PERFECT FIGMA LAYOUT CSS
   ========================================= */

.figma-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.figma-panel.active {
  display: block;
}

.figma-layout-container {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

/* HEADER */
.figma-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  position: relative;
  min-height: 400px;
}

.figma-title-box {
  width: 50%;
  z-index: 2;
}

.company-logo-text {
  margin-bottom: 20px;
  line-height: 1;
}

.f-main-heading {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: -1px;
}

.f-navy {
  color: #0d1e3d;
}

.f-orange {
  color: #ff6600;
}

.f-small {
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.f-sub-heading {
  color: #0d1e3d;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.f-heading-line {
  width: 100px;
  height: 4px;
  background: #ff6600;
  border-radius: 2px;
}

.figma-image-box {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.f-hero-img {
  width: 90%;
  max-width: 450px;
  height: auto;
  z-index: 2;
}

/* Dotted bg effect */
.figma-image-box::before {
  content: '';
  position: absolute;
  top: -20px;
  right: 0px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#d5d9e0 20%, transparent 20%);
  background-size: 15px 15px;
  z-index: 1;
}

.figma-image-box::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
  z-index: 0;
}

/* TABLE */
.figma-table-container {
  padding: 0 40px 40px 40px;
}

.figma-table {
  width: 100%;
  border-collapse: collapse;
}

.figma-table th {
  padding: 0;
  height: 60px;
  vertical-align: middle;
  color: #fff;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.figma-table .th-left {
  background: #0d1e3d;
  border-radius: 12px 0 0 0;
  width: 60%;
}

.figma-table .th-right {
  background: #ff6600;
  border-radius: 0 12px 0 0;
  width: 40%;
  text-align: center;
}

.th-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.th-content svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.figma-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 600;
  color: #333;
}

.figma-table tr:last-child td {
  border-bottom: none;
}

.td-service {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
}

.f-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid;
}

.f-icon-circle.blue {
  border-color: #0055ff;
}

.f-icon-circle.orange {
  border-color: #ff6600;
}

.f-icon-circle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.f-icon-circle.blue svg {
  stroke: #0055ff;
}

.f-icon-circle.orange svg {
  stroke: #ff6600;
}

.td-rate {
  text-align: center;
  font-size: 1.05rem;
}

/* EXAMPLES GRID (Digital Ads) */
.f-examples-banner {
  background: #0d1e3d;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 20px;
  display: inline-block;
  margin: 30px auto 20px auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-headings);
  letter-spacing: 1px;
}

.f-examples-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.f-example-card {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  width: 45%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.f-ex-icon {
  position: relative;
}

.f-ex-icon svg {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: #0d1e3d;
  stroke-width: 2;
  stroke-linejoin: round;
}

.wallet-icon {
  width: 60px;
  height: 60px;
  background: #0d1e3d;
  border-radius: 8px;
}

.wallet-icon.stack {
  box-shadow: 10px 10px 0 #ff6600;
}

.rupee-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background: #ffaa00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
}

.orange-badge {
  background: #ff6600;
}

.f-ex-content {
  display: flex;
  flex-direction: column;
}

.f-ex-label {
  font-size: 0.9rem;
  color: #666;
}

.f-ex-budget {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff6600;
}

.f-ex-sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.f-ex-line {
  border: none;
  border-top: 1px solid #ddd;
  margin: 8px 0;
}

.f-ex-fee {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d1e3d;
}

/* SOCIAL MEDIA PACKAGES */
.f-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 40px 20px 40px;
}

.f-package-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.center-card {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.f-pack-header {
  padding: 20px;
  text-align: center;
  color: #fff;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.2;
}

.f-pack-header svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  display: block;
  margin: 0 auto 10px auto;
  stroke-linejoin: round;
}

.pack-navy {
  background: #0d1e3d;
}

.pack-blue {
  background: #0055ff;
}

.pack-orange {
  background: #ff6600;
}

.f-pack-price {
  text-align: center;
  padding: 15px;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}

.f-pack-features {
  list-style: none;
  padding: 20px;
  margin: 0;
  background: #fff;
  flex-grow: 1;
}

.f-pack-features li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.f-pack-features li svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ff6600;
  stroke-width: 2;
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.f-addons-banner {
  background: #0d1e3d;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 10px 40px;
  border-radius: 20px;
  display: inline-block;
  margin: 10px auto 20px auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-headings);
}

.f-addons-container {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid #eee;
  border-radius: 12px;
  margin: 0 40px 40px 40px;
  padding: 20px 0;
}

.f-addon-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.border-left {
  border-left: 1px solid #eee;
}

.f-addon-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.f-addon-icon.red svg {
  stroke: #ff0000;
}

.f-addon-icon.blue svg {
  stroke: #0055ff;
}

.f-addon-text {
  font-weight: 700;
  font-size: 1.05rem;
}

.f-addon-price {
  display: block;
  font-weight: 700;
  color: #666;
  font-size: 0.95rem;
  margin-top: 5px;
}

.f-addon-price.orange {
  color: #ff6600;
}

@media (max-width: 768px) {
  .figma-header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .figma-title-box,
  .figma-image-box {
    width: 100%;
  }

  .figma-table-container,
  .f-packages-grid,
  .f-addons-container {
    padding: 15px;
  }

  .f-packages-grid {
    grid-template-columns: 1fr;
  }

  .center-card {
    transform: scale(1);
  }

  .f-examples-grid {
    flex-direction: column;
  }

  .f-example-card {
    width: 100%;
  }

  .f-addons-container {
    flex-direction: column;
  }

  .border-left {
    border-left: none;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }
}

/* =========================================
   CLEAN LAYOUT (Requested by User)
   ========================================= */

.clean-panel {
  animation: fadeIn 0.4s ease-in-out forwards;
}

/* Header Area */
.pdf-header-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding: 1rem 0;
}

.pdf-title-block {
  flex: 1;
}

.pdf-main-heading {
  font-family: var(--font-headings);
  font-size: 3rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: -1px;
}

.pdf-sub-heading {
  color: #0d1e3d;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}

.text-navy {
  color: #0d1e3d;
}

.text-orange {
  color: #ff6600;
}

.pdf-image-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-hero-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Table Wrapper */
.pdf-table-wrapper {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 3rem;
  border: 1px solid #f0f0f0;
}

.pdf-pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pdf-pricing-table th {
  padding: 15px 20px;
  color: white;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.th-service {
  background: #3a2e7c;
  /* Purple from screenshot */
  text-align: left;
}

.th-rate {
  background: #ff6600;
  text-align: center;
  width: 40%;
}

.pdf-pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #f2f2f2;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
}

.pdf-pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.text-center {
  text-align: center;
}

.tiny-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 12px;
  stroke: #3a2e7c;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Common Grids */
.c-examples-banner {
  background: #0d1e3d;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 8px 30px;
  border-radius: 20px;
  display: inline-block;
  margin: 10px auto 20px auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-headings);
}

.c-examples-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.c-example-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  width: 45%;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.c-ex-icon {
  position: relative;
}

.c-ex-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: #3a2e7c;
  stroke-width: 2;
  stroke-linejoin: round;
}

.c-rupee-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: #ffaa00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 0.8rem;
}

.c-rupee-badge.orange {
  background: #ff6600;
}

.c-ex-content {
  display: flex;
  flex-direction: column;
}

.c-ex-label {
  font-size: 0.85rem;
  color: #666;
}

.c-ex-budget {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ff6600;
}

.c-ex-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  margin-top: 5px;
}

.c-ex-line {
  border: none;
  border-top: 1px solid #eee;
  margin: 8px 0;
}

.c-ex-fee {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d1e3d;
}

.c-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.c-package-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.c-pack-header {
  padding: 15px;
  text-align: center;
  color: white;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.1rem;
}

.c-pack-price {
  padding: 15px;
  text-align: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
}

.bg-navy {
  background: #0d1e3d;
}

.bg-purple {
  background: #3a2e7c;
}

.bg-orange {
  background: #ff6600;
}

.c-pack-features {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.c-pack-features li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.c-pack-features li svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ff6600;
  stroke-width: 2;
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.c-addons-container {
  display: flex;
  justify-content: center;
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.c-addon-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.c-addon-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.c-addon-text {
  font-weight: 700;
  font-size: 1rem;
}

.c-addon-price {
  display: block;
  font-weight: 700;
  color: #666;
  font-size: 0.9rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .pdf-header-area {
    flex-direction: column;
    text-align: center;
  }

  .c-packages-grid,
  .c-examples-grid,
  .c-addons-container {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .c-example-card {
    width: 100%;
  }

  .c-addon-item {
    border-left: none !important;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }
}

/* =========================================
   EXACT FIGMA LAYOUT
   ========================================= */

.figma-exact-panel {
  animation: fadeIn 0.4s ease-in-out forwards;
  background-color: #ffffff;
  padding: 0;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  /* Make sure panel stretches full width of container */
  width: 100%;
}

/* ============================================================
   GRAPHIC DESIGN PANEL — PREMIUM FIGMA-EXACT STYLE
   ============================================================ */

/* Panel base — clean white card with entrance animation */
.figma-exact-panel {
  animation: gd-panelIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  position: relative;
  overflow: hidden;
}

@keyframes gd-panelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Decorative ambient blob — top-right behind image */
.figma-exact-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Decorative dot grid — bottom-left corner */
.figma-exact-panel::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: 30px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(rgba(0, 85, 255, 0.18) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  pointer-events: none;
  z-index: 0;
}

/* ── Header Flex Layout ── */
.fe-header-area {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  padding: 50px 56px 28px 56px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(255, 106, 0, 0.03) 0%,
      rgba(255, 255, 255, 0) 60%,
      rgba(0, 85, 255, 0.03) 100%);
}

.fe-title-block {
  flex: 1.15;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left !important;
  min-width: 0;
  /* allows text wrapping */
  padding-right: 20px;
}

/* ── Top-left KRAFTOR logo row ── */
.fe-logo-area {
  display: none;
  /* User requested removal */
}

/* ── Giant service heading ── */
.fe-main-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 18px 0;
  letter-spacing: -2px;
}

#web-design .fe-main-heading {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  word-break: break-word;
}

.text-navy {
  color: #0d1e3d;
}

.text-orange {
  color: #ff6600;
}

.fe-sub-heading {
  color: #0d1e3d;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 3.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* Orange accent underline */
.fe-title-line {
  width: 110px;
  height: 4px;
  background: linear-gradient(90deg, #ff6600, #ffaa00);
  border-radius: 4px;
  margin-top: 8px;
}

/* ── Floating image on the right ── */
.fe-image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 10px;
}

/* Decorative orange ring behind image */
.fe-image-block::before {
  content: '';
  position: absolute;
  top: -10px;
  right: 5px;
  width: 80px;
  height: 80px;
  border: 16px solid rgba(255, 102, 0, 0.18);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: gd-ringPulse 4s ease-in-out infinite;
}

@keyframes gd-ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.fe-hero-img {
  width: 100%;
  max-width: 430px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(13, 27, 61, 0.14));
  animation: gd-float 5.5s ease-in-out infinite;
}

@keyframes gd-float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(0.8deg);
  }
}

/* ── Table Wrapper ── */
.fe-table-wrapper {
  padding: 0 50px 0 50px;
  position: relative;
  z-index: 2;
}

.fe-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13, 27, 61, 0.07);
}

/* ── Table header — navy left / orange right ── */
.fe-pricing-table th {
  padding: 20px 28px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bg-blue {
  background: linear-gradient(135deg, #0a1d6e 0%, #1a56b8 100%);
  text-align: left;
}

.bg-navy {
  background: linear-gradient(135deg, #0a1b3f 0%, #1a3066 100%);
  text-align: left;
}

.bg-orange {
  background: linear-gradient(135deg, #e55a00 0%, #ff6600 60%, #ff9900 100%);
  text-align: center;
  width: 38%;
}

/* ── Table rows — hover glow & stagger in ── */
.fe-pricing-table tbody tr {
  transition: background 0.22s ease;
  animation: gd-rowIn 0.4s ease both;
}

@keyframes gd-rowIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fe-pricing-table tbody tr:nth-child(1) {
  animation-delay: 0.05s;
}

.fe-pricing-table tbody tr:nth-child(2) {
  animation-delay: 0.10s;
}

.fe-pricing-table tbody tr:nth-child(3) {
  animation-delay: 0.15s;
}

.fe-pricing-table tbody tr:nth-child(4) {
  animation-delay: 0.20s;
}

.fe-pricing-table tbody tr:nth-child(5) {
  animation-delay: 0.25s;
}

.fe-pricing-table tbody tr:nth-child(6) {
  animation-delay: 0.30s;
}

.fe-pricing-table tbody tr:nth-child(7) {
  animation-delay: 0.35s;
}

.fe-pricing-table tbody tr:nth-child(8) {
  animation-delay: 0.40s;
}

.fe-pricing-table tbody tr:nth-child(9) {
  animation-delay: 0.45s;
}

.fe-pricing-table tbody tr:nth-child(10) {
  animation-delay: 0.50s;
}

.fe-pricing-table tbody tr:nth-child(11) {
  animation-delay: 0.55s;
}

.fe-pricing-table tbody tr:nth-child(12) {
  animation-delay: 0.60s;
}

.fe-pricing-table tbody tr:hover {
  background: rgba(255, 102, 0, 0.04);
}

.fe-pricing-table td {
  padding: 13px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: #0d1e3d;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  vertical-align: middle;
}

.fe-pricing-table tbody tr:hover td:last-child {
  color: #ff6600;
  font-weight: 700;
  transition: color 0.22s ease;
}

.fe-pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.text-center {
  text-align: center;
}

/* ── Icon boxes in each row ── */
.fe-icon-box {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 14px;
  flex-shrink: 0;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fe-pricing-table tbody tr:hover .fe-icon-box {
  transform: scale(1.12);
}

.blue-square {
  background: linear-gradient(135deg, #0044dd 0%, #1a56b8 100%);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 68, 221, 0.28);
}

.orange-circle {
  background: linear-gradient(135deg, #ff6600 0%, #ff9900 100%);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.32);
}

.fe-icon-box svg {
  width: 17px;
  height: 17px;
}

/* ── Bottom gradient bar ── */
.fe-bottom-wave {
  height: 66px;
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.wave-blue {
  background: linear-gradient(90deg,
      #0a1d6e 0%,
      #0055ff 35%,
      #ff6600 70%,
      #ff9900 100%);
}

.wave-navy {
  background: linear-gradient(90deg,
      #0d1e3d 0%,
      #1a3a7c 40%,
      #ff6600 75%,
      #ff9900 100%);
}

/* ── Premium Pricing Cards (Social & YouTube) ── */
.fe-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 20px 24px 20px;
  position: relative;
  z-index: 2;
}

.fe-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.fe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.fe-card-header {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  width: 100%;
}

.fe-card-header.bg-navy {
  background: #0d1e3d;
}

.fe-card-header.bg-blue {
  background: #1a56b8;
}

.fe-card-header.bg-orange {
  background: #ff6600;
}

.fe-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fe-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.fe-card-price {
  padding: 16px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}

.fe-card-price.tab-style {
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: 0;
  align-self: auto;
  display: block;
}

.fe-card-price.tab-style .price-suffix {
  display: inline;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0;
}

.fe-card-price.full-style {
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  display: block;
}

.fe-card-price.bg-orange {
  background: #ff6600;
}

.fe-card-price.bg-navy {
  background: #0d1e3d;
}

.fe-card-body {
  padding: 24px 20px;
  flex: 1;
  background: #fdfdfd;
}

.fe-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fe-check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #444;
  line-height: 1.4;
}

.fe-check-list li:last-child {
  margin-bottom: 0;
}

.fe-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0px;
  color: #ff6600;
  font-weight: 900;
  font-size: 1.1rem;
}

.fe-check-list li .sub-text {
  display: block;
  font-size: 0.75rem;
  color: #777;
  margin-top: 2px;
  font-weight: 400;
}

/* ── Add-On Banners ── */
.fe-addons-banner {
  background: #0d1e3d;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 10px 36px;
  border-radius: 8px;
  display: inline-block;
  margin: 10px auto 24px;
  letter-spacing: 1px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.95rem;
}

.fe-addons-row {
  display: flex;
  margin: 0 40px 30px 40px;
  background: #fff;
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  padding: 24px 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
}

.fe-addon-col {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-right: 1px solid #eee;
}

.fe-addon-col:last-child {
  border-right: none;
}

.fe-addon-icon-box {
  width: 52px;
  height: 52px;
  background: #f4f7fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fe-addon-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0d1e3d;
  line-height: 1.3;
}

.fe-addon-price {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
  color: #ff6600;
}

/* ── Builder Package Layout ── */
.fe-builder-container {
  display: flex;
  gap: 40px;
  padding: 0 40px 40px 40px;
}

.fe-builder-col-left {
  flex: 1.2;
}

.fe-builder-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fe-builder-box {
  background: #fff;
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
}

.fe-builder-box-header {
  background: #0d1e3d;
  color: #fff;
  padding: 14px 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}

.fe-builder-list {
  padding: 24px;
}

.fe-checkbox-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
}

.fe-checkbox-item:last-child {
  margin-bottom: 0;
}

.fe-checkbox-input {
  display: none;
}

.fe-checkbox-box {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.fe-checkbox-item:hover .fe-checkbox-box {
  border-color: #ff6600;
}

.fe-checkbox-input:checked+.fe-checkbox-box {
  background: #ff6600;
  border-color: #ff6600;
  color: #fff;
}

.fe-checkbox-input:checked~.fe-service-text {
  color: #ff6600;
}

.fe-service-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1a56b8;
}

.fe-service-text {
  transition: color 0.2s ease;
}

.fe-checkbox-item.active {
  color: #ff6600;
}

.fe-icon-wrap {
  width: 24px;
  display: flex;
  justify-content: center;
}

.fe-pricing-start {
  padding: 30px;
  text-align: center;
}

.fe-pricing-start .label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #666;
  font-size: 1rem;
}

.fe-pricing-start .price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #ff6600;
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 10px 0;
}

.fe-pricing-start .sub {
  font-size: 0.85rem;
  color: #777;
  font-weight: 500;
  text-align: left;
  margin-top: 20px;
  line-height: 1.6;
}

.fe-pricing-start .sub ul {
  padding-left: 20px;
  margin: 8px 0;
}

.fe-quote-btn {
  display: block;
  background: linear-gradient(90deg, #ff6600, #ff9900);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 24px;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
  transition: transform 0.2s ease;
}

.fe-quote-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* ── Web Design Footer Bar ── */
.fe-web-footer {
  display: flex;
  background: #0d1e3d;
  margin: 0 40px 40px 40px;
  border-radius: 12px;
  color: #fff;
  padding: 24px 0;
  box-shadow: 0 8px 24px rgba(13, 30, 61, 0.2);
}

.fe-web-feature {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.fe-web-feature:last-child {
  border-right: none;
}

/* ── Mobile Responsiveness ── */
@media (max-width: 992px) {
  .fe-header-area {
    flex-direction: column !important;
    text-align: center;
    padding: 32px 24px 20px;
  }

  .fe-title-block {
    text-align: center !important;
    margin-bottom: 28px;
  }

  .fe-logo-area {
    justify-content: center;
  }

  .fe-title-line {
    margin: 14px auto 0;
  }

  .fe-image-block {
    justify-content: center;
    padding-left: 0;
  }

  .fe-hero-img {
    max-width: 300px;
  }

  .fe-table-wrapper {
    padding: 0 16px 28px;
  }

  .fe-pricing-table th {
    font-size: 0.8rem;
    padding: 14px 16px;
  }

  .fe-pricing-table td {
    font-size: 0.85rem;
    padding: 11px 16px;
  }
}


/* ═══════════════════════════════════════════════════════════
   KRAFTOR DESIGN POLISH v2 — FAANG-LEVEL ENHANCEMENTS
   All overrides here (bottom of file = highest cascade)
═══════════════════════════════════════════════════════════ */

/* ── 1. HERO ENTRANCE ANIMATIONS ─────────────────────────── */
@keyframes kf-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content .badge {
  animation: kf-fade-up 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.05s both;
}

.hero-content h1 {
  animation: kf-fade-up 0.85s cubic-bezier(0.4, 0, 0.2, 1) 0.18s both;
}

.hero-content>p {
  animation: kf-fade-up 0.85s cubic-bezier(0.4, 0, 0.2, 1) 0.32s both;
}

.hero-actions {
  animation: kf-fade-up 0.85s cubic-bezier(0.4, 0, 0.2, 1) 0.46s both;
}

/* ── 2. BUTTON SHINE SWEEP ────────────────────────────────── */
.btn-primary,
.btn-navy {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-navy::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}

.btn-primary:hover::after,
.btn-navy:hover::after {
  left: 140%;
}

/* ── 3. STAGGER ANIMATION SYSTEM ──────────────────────────── */
.stagger-grid>* {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1) var(--stagger-delay, 0ms),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1) var(--stagger-delay, 0ms);
}

.stagger-grid.kf-revealed>* {
  opacity: 1;
  transform: translateY(0);
}

/* ── 4. SERVICE CARDS — UNIFIED PREMIUM REDESIGN ─────────── */
.service-card-main {
  background: var(--color-white) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-xl) !important;
  padding: 2.25rem !important;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
}

/* Ghost number top-right */
.service-card-main::after {
  content: attr(data-num);
  position: absolute;
  top: -6px;
  right: 1.5rem;
  font-family: var(--font-headings);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(13, 27, 61, 0.045);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: 0;
}

/* Left accent bar — replaces old top bar */
.service-card-main::before {
  content: "" !important;
  position: absolute !important;
  left: 0;
  top: 0;
  bottom: 0 !important;
  width: 4px !important;
  height: 100% !important;
  background: var(--gradient-orange) !important;
  border-radius: 0 4px 4px 0 !important;
  transform: scaleY(0) !important;
  transform-origin: bottom !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.service-card-main:hover::before {
  transform: scaleY(1) !important;
}

/* Unified orange icon for ALL cards — remove alternating blue */
.service-card-main .service-card-icon,
.service-card-main:nth-child(even) .service-card-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: var(--radius-md) !important;
  background: rgba(255, 106, 0, 0.09) !important;
  color: var(--color-orange) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative;
  z-index: 1;
}

.service-card-main:hover .service-card-icon,
.service-card-main:nth-child(even):hover .service-card-icon {
  background: rgba(255, 106, 0, 0.16) !important;
  transform: scale(1.1) rotate(-4deg) !important;
  filter: none !important;
}

.service-card-main:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(255, 106, 0, 0.18) !important;
  box-shadow: 0 20px 50px rgba(255, 106, 0, 0.1), 0 6px 16px rgba(13, 27, 61, 0.06) !important;
}

.service-card-main h3 {
  font-size: 1.1rem;
  color: var(--color-navy);
  margin: 0;
  position: relative;
  z-index: 1;
}

.service-card-main p {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
  line-height: 1.72;
  flex-grow: 1;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Unified orange learn-more — remove alternating blue */
.learn-more-link,
.service-card-main:nth-child(even) .learn-more-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: var(--color-orange) !important;
  text-decoration: none !important;
  margin-top: auto;
  transition: gap 0.2s ease !important;
  position: relative;
  z-index: 1;
}

.learn-more-link:hover {
  gap: 0.7rem !important;
}

/* ── 5. WHY CARDS — CLEAN & CONSISTENT ───────────────────── */
.why-card {
  background: var(--color-white) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-xl) !important;
  padding: 2.25rem !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  border-color: rgba(255, 106, 0, 0.2) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(255, 106, 0, 0.09), 0 4px 16px rgba(13, 27, 61, 0.05) !important;
}

.why-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: var(--radius-md) !important;
  background: rgba(255, 106, 0, 0.09) !important;
  color: var(--color-orange) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 1.25rem !important;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.why-card:nth-child(even) .why-icon {
  background: rgba(0, 102, 255, 0.09) !important;
  color: var(--color-blue) !important;
}

.why-card:hover .why-icon,
.why-card:nth-child(even):hover .why-icon {
  transform: scale(1.12) rotate(-5deg) !important;
}

/* ── 6. TRUST/STATS ITEMS ────────────────────────────────── */
.trust-item {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.trust-item:hover::before {
  transform: scaleX(1);
}

.trust-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 0, 0.15);
  box-shadow: 0 16px 40px rgba(255, 106, 0, 0.08);
}

/* ── 7. CTA BANNER — ANIMATED ORBS ───────────────────────── */
@keyframes kf-pulse-orb {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.35);
    opacity: 1;
  }
}

.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  animation: kf-pulse-orb 5s ease-in-out infinite alternate !important;
}

.cta-banner::after {
  animation: kf-pulse-orb 7s ease-in-out infinite alternate-reverse !important;
}

/* ── 8. GLASS CARD HOVER GLOW ────────────────────────────── */
.glass-card {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  box-shadow: 0 20px 60px rgba(255, 106, 0, 0.1), 0 6px 20px rgba(13, 27, 61, 0.06);
}

/* ── 9. OFFER CARDS ──────────────────────────────────────── */
.offer-card {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(255, 106, 0, 0.13);
}

/* ── 10. TESTIMONIALS POLISH ─────────────────────────────── */

.testimonial-text::before {
  content: "\201C" !important;
  font-size: 5rem !important;
  color: rgba(255, 106, 0, 0.12) !important;
}

/* ── 11. FOOTER LINKS SLIDE ──────────────────────────────── */
.footer-links-list a {
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--color-orange) !important;
  transform: translateX(4px);
}

/* ── 12. SOCIAL ICON HOVER ───────────────────────────────── */
.social-icon {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.12) !important;
}

/* ── 13. SECTION HEADER FLUID TYPE ──────────────────────── */
.section-header h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
}

.section-header p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

/* ── 14. ENHANCED SCROLL REVEAL ──────────────────────────── */
.reveal-on-scroll {
  opacity: 0 !important;
  transform: translateY(36px) !important;
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.reveal-on-scroll.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── 15. FORM FOCUS GLOW ─────────────────────────────────── */
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="date"]):focus,
textarea:focus,
select:focus {
  outline: none !important;
  border-color: var(--color-orange) !important;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12) !important;
}

/* ── 16. RESPONSIVE POLISH ───────────────────────────────── */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .trust-item {
    padding: 1.75rem 1rem;
  }

  /* Clip hero blobs so they don't overflow onto text on mobile */
  .hero {
    overflow: hidden !important;
  }

  .shape-1 {
    width: 200px !important;
    height: 200px !important;
    opacity: 0.15 !important;
  }

  .shape-2 {
    width: 160px !important;
    height: 160px !important;
    opacity: 0.15 !important;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .shape-1 {
    display: none !important;
  }

  .shape-2 {
    display: none !important;
  }
}

/* ── GEO RINGS — mobile: pause spin, shrink so they don't dominate ── */
@media (max-width: 768px) {
  .geo-ring-left {
    width: 180px;
    height: 180px;
    left: -90px;
    animation-play-state: paused;
  }

  .geo-ring-right {
    width: 220px;
    height: 220px;
    right: -110px;
    animation-play-state: paused;
  }
}

@media (max-width: 480px) {

  .geo-ring-left,
  .geo-ring-right {
    display: none;
  }
}

/* ── FOOTER MOBILE — hide link columns, keep brand + subscribe + bottom ── */
@media (max-width: 768px) {
  .footer-col {
    display: none !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .footer-info-col {
    text-align: center;
  }

  .footer-info-col .social-links {
    justify-content: center;
  }

  .footer-newsletter-col {
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-input {
    width: 100% !important;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.75rem !important;
  }
}

/* ── 17. ABOUT PAGE RESPONSIVE ───────────────────────────── */
.about-tab-content {
  min-width: 0;
}

@media (max-width: 768px) {
  .about-nav-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .about-tab-btn {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
  }

  .timeline-container {
    padding-left: 1.5rem;
  }

  .timeline-item {
    flex-direction: column !important;
    gap: 0.5rem;
  }

  .timeline-year {
    min-width: auto !important;
  }

  .crew-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
}

@media (max-width: 480px) {

  .crew-grid,
  .team-grid {
    grid-template-columns: 1fr !important;
  }

  .core-values-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── 18. CONTACT PAGE RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .premium-contact-card {
    padding: 2rem 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .premium-contact-card {
    padding: 1.5rem 1.25rem !important;
  }

  .contact-info-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ── 19. BLOG / PORTFOLIO RESPONSIVE ─────────────────────── */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .portfolio-grid-list {
    grid-template-columns: 1fr !important;
  }
}

/* ── 20. INTERNSHIP PAGE RESPONSIVE ──────────────────────── */
@media (max-width: 768px) {
  .perks-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 480px) {
  .perks-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── 21. SERVICE CARD — ICON + NAME ON SAME LINE ─────────── */
/* Switch from flex-column to CSS grid so icon & h3 sit side-by-side */
.service-card-main {
  display: grid !important;
  grid-template-columns: 52px 1fr !important;
  grid-template-rows: auto auto auto !important;
  column-gap: 1rem !important;
  row-gap: 0.75rem !important;
  flex-direction: unset !important;
  gap: unset !important;
}

.service-card-main .service-card-icon {
  grid-column: 1;
  grid-row: 1;
  align-self: center !important;
  margin-bottom: 0 !important;
}

.service-card-main h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center !important;
  font-size: 1.05rem !important;
  line-height: 1.3 !important;
}

.service-card-main p {
  grid-column: 1 / -1;
  grid-row: 2;
  flex-grow: unset !important;
}

.service-card-main .learn-more-link {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 0 !important;
}

/* ── 22. SERVICES PAGE MOBILE ─────────────────────────────── */
@media (max-width: 768px) {
  .fe-cards-grid {
    padding: 0 16px 24px !important;
    gap: 14px !important;
  }

  .fe-card {
    min-width: 0 !important;
  }

  .fe-web-footer {
    flex-direction: column !important;
    margin: 0 16px 24px !important;
    padding: 16px 0 !important;
  }

  .fe-web-feature {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 12px 16px !important;
    justify-content: flex-start !important;
  }

  .fe-web-feature:last-child {
    border-bottom: none !important;
  }

  .fe-header-area {
    padding: 24px 16px 16px !important;
  }

  .fe-pricing-table th,
  .fe-pricing-table td {
    font-size: 0.78rem !important;
    padding: 10px 10px !important;
  }
}

@media (max-width: 480px) {
  .fe-cards-grid {
    padding: 0 8px 16px !important;
  }
}

/* ── 23. PORTFOLIO TABLET OVERRIDE (inline style fix) ──────── */
@media (max-width: 1024px) {
  #portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 576px) {
  #portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .portfolio-card img {
    height: 180px !important;
    object-fit: cover !important;
  }
}

/* ── 24. BLOG PAGE TABLET ─────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── 25. LEGAL / POLICIES PAGES ──────────────────────────── */
/* Both pages use inline <style> for layout but need content padding fix */
@media (max-width: 576px) {
  .glass-card.policy-container {
    padding: 1.5rem !important;
  }

  .legal-content-card {
    padding: 1.5rem !important;
  }

  .policy-section {
    padding: 1.5rem 0 !important;
  }
}

/* ── 26. SERVICES PAGE — FULL RESPONSIVE ─────────────────── */
/* Tablet: compress sidebar */
@media (max-width: 1100px) {
  .services-container {
    grid-template-columns: 220px 1fr !important;
    gap: 1.5rem !important;
  }

  .service-tab-btn {
    padding: 0.75rem 1rem !important;
    font-size: 0.88rem !important;
  }
}

/* Mobile: sidebar becomes horizontal scrollable tabs on top */
@media (max-width: 860px) {
  .services-container {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 1rem !important;
    overflow: hidden !important;
  }

  /* Critical: grid children must not overflow their cell */
  .services-content {
    min-width: 0 !important;
    width: 100% !important;
    overflow: visible !important;
  }

  /* figma-exact-panel keeps overflow:hidden for the decorative blob, but allow x-scroll on children */
  .figma-exact-panel {
    min-width: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  /* Panel inner padding — 4rem on mobile = 128px wasted width */
  .service-panel {
    padding: 1.5rem !important;
  }

  /* Sidebar: keep overflow visible so tab strip can scroll */
  .services-sidebar {
    position: static !important;
    padding: 0.75rem !important;
    border-radius: 1rem !important;
    min-width: 0 !important;
    width: 100% !important;
    overflow: visible !important;
  }

  .sidebar-header {
    display: none !important;
  }

  .services-nav {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 0.5rem !important;
    padding-bottom: 4px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-nav::-webkit-scrollbar {
    display: none;
  }

  .service-tab-btn {
    flex-shrink: 0 !important;
    width: auto !important;
    padding: 0.55rem 1rem !important;
    font-size: 0.82rem !important;
    border-radius: 2rem !important;
    white-space: nowrap !important;
  }

  .service-tab-btn.active {
    background: var(--color-navy) !important;
    color: #fff !important;
  }

  /* Collapse the panel header to single column */
  .fe-header-area {
    flex-direction: column !important;
    padding: 24px 16px 16px !important;
    text-align: center !important;
    align-items: center !important;
  }

  .fe-title-block {
    text-align: center !important;
    width: 100% !important;
  }

  .fe-image-block {
    justify-content: center !important;
    padding-left: 0 !important;
    width: 100% !important;
  }

  .fe-hero-img {
    max-width: 240px !important;
  }

  .fe-main-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 18px 0;
  letter-spacing: -2px;
}

#web-design .fe-main-heading {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  word-break: break-word;
}

  .fe-table-wrapper {
    padding: 0 12px 20px !important;
    overflow-x: auto !important;
  }

  .fe-pricing-table {
    min-width: 460px;
  }

  /* At 860px — keep grid but reduce padding */
  .fe-cards-grid {
    padding: 0 16px 20px !important;
    gap: 12px !important;
  }

  /* Build Your Own — stack left/right columns */
  .fe-builder-container {
    flex-direction: column !important;
    padding: 0 12px 24px !important;
    gap: 20px !important;
  }

  /* Override inline column-count:2 on the checklist */
  .fe-builder-list {
    column-count: 1 !important;
    padding: 16px !important;
  }

  .fe-checkbox-item {
    font-size: 0.88rem !important;
    gap: 10px !important;
  }

  /* Add-on / Optional Shooting rows — stack to column */
  .fe-addons-row {
    flex-direction: column !important;
    margin: 0 12px 20px !important;
    padding: 8px 0 !important;
  }

  .fe-addon-col {
    border-right: none !important;
    border-bottom: 1px solid #eee !important;
    padding: 14px 16px !important;
    gap: 14px !important;
  }

  .fe-addon-col:last-child {
    border-bottom: none !important;
  }

  .fe-addons-banner {
    font-size: 0.82rem !important;
    padding: 8px 20px !important;
    letter-spacing: 0.5px !important;
  }

  /* Digital Ads — EXAMPLES flex cards */
  #digital-ads .fe-table-wrapper>div[style*="flex"] {
    flex-direction: column !important;
  }

  #digital-ads .fe-table-wrapper>div[style*="flex"]>div[style*="flex:1"] {
    min-width: 0 !important;
    width: 100% !important;
  }

  .fe-web-footer {
    flex-direction: column !important;
    margin: 0 12px 20px !important;
  }

  .fe-web-feature {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 10px 14px !important;
    justify-content: flex-start !important;
  }

  .fe-web-feature:last-child {
    border-bottom: none !important;
  }
}

@media (max-width: 480px) {
  .services-container {
    padding: 0 0.5rem !important;
  }

  .fe-hero-img {
    max-width: 180px !important;
  }

  .fe-pricing-table th,
  .fe-pricing-table td {
    font-size: 0.75rem !important;
    padding: 8px 8px !important;
  }

  .fe-cards-grid {
    padding: 0 6px 14px !important;
  }
}

/* ── Cards carousel — phones only ≤600px ── */
@media (max-width: 600px) {
  .fe-cards-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0.75rem 1rem 1.5rem !important;
    gap: 1rem !important;
    grid-template-columns: unset !important;
  }

  .fe-cards-grid::-webkit-scrollbar { height: 4px; }
  .fe-cards-grid::-webkit-scrollbar-track { background: #f0f4f8; border-radius: 10px; }
  .fe-cards-grid::-webkit-scrollbar-thumb { background: var(--color-orange); border-radius: 10px; }

  .fe-card {
    flex: 0 0 85% !important;
    min-width: 0 !important;
    width: auto !important;
    scroll-snap-align: start !important;
  }
}

/* =========================================
   SPECIAL OFFERS SYSTEM
   ========================================= */

.offer-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.offer-modal.active {
  opacity: 1;
  pointer-events: all;
}

.offer-modal-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 27, 61, 0.8);
  backdrop-filter: blur(8px);
}

.offer-modal-content {
  position: relative;
  z-index: 10000;
  width: 100%;
  max-width: 900px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-modal.active .offer-modal-content {
  transform: translateY(0);
}

.offer-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0,0,0,0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}

.offer-modal-close:hover {
  background: rgba(0,0,0,0.1);
}

.offer-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.offer-modal-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  aspect-ratio: 3/4;
}

.offer-modal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .offer-modal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .offer-modal-content {
    padding: 1.5rem;
    max-height: 90vh;
    overflow-y: auto;
  }
  .offer-modal-img-wrapper {
    aspect-ratio: 16/9; /* Change to landscape on mobile so it doesn't take up the whole screen */
  }
}
.btn-blue {
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
  border: 1px solid var(--color-blue);
  position: relative;
  overflow: hidden;
}
.btn-blue:hover {
  background: #005ce6;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.4);
}
.btn-blue::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.btn-blue:hover::after {
  left: 140%;
}

/* ── PREMIUM PRELOADER ── */
html.splash-seen #premium-preloader {
  display: none;
}

html.splash-active .navbar-header .logo-wrapper img {
  opacity: 0;
}

#premium-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(255, 106, 0, 0.16), transparent 26%),
    linear-gradient(245deg, rgba(0, 102, 255, 0.18), transparent 32%),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.08), transparent 28%),
    #08142f;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  transition:
    opacity 0.32s ease,
    background-color 0.42s ease,
    box-shadow 1.25s cubic-bezier(0.86, 0, 0.07, 1),
    visibility 1.25s linear;
}

.preloader-stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  transform: translate(0, 0) scale(1);
}

.preloader-video {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: contain;
  background: #ffffff;
  display: block;
  opacity: 1;
  transform: scale(1.006);
  transition: opacity 0.22s ease;
}

.preloader-flight-logo {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(52vw, 720px);
  max-width: 86vw;
  height: auto;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  filter: drop-shadow(0 20px 34px rgba(13, 27, 61, 0.13));
  pointer-events: none;
}

#premium-preloader.logo-handoff {
  background: transparent;
  box-shadow: none;
}

#premium-preloader.logo-handoff::before,
#premium-preloader.logo-handoff::after {
  opacity: 0;
  transition: opacity 0.24s ease;
}

#premium-preloader.logo-handoff .preloader-video {
  opacity: 0;
}

#premium-preloader.logo-handoff .preloader-flight-logo {
  opacity: 1;
  transform: translate(calc(-50% + var(--flight-x, 0px)), calc(-50% + var(--flight-y, 0px))) scale(var(--flight-scale, 0.18));
  transition:
    transform 1.08s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.16s ease;
}

#premium-preloader::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -2;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 92px);
  mask-image: radial-gradient(circle at center, black 0 38%, transparent 68%);
  opacity: 0.32;
  transform: perspective(700px) rotateX(58deg) translateY(16%);
  animation: preloaderGrid 2.8s ease-out both;
}

#premium-preloader::after {
  content: "";
  position: absolute;
  inset: -45% -20%;
  z-index: -1;
  background: linear-gradient(105deg, transparent 24%, rgba(255, 255, 255, 0.14) 38%, rgba(255, 164, 0, 0.16) 44%, rgba(0, 102, 255, 0.16) 50%, transparent 64%);
  transform: translateX(-58%) rotate(8deg);
  animation: preloaderSweep 2.35s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

#premium-preloader.loaded {
  opacity: 0;
  transform: none;
  box-shadow: none;
  visibility: hidden;
  pointer-events: none;
}

#premium-preloader.loaded .preloader-flight-logo {
  opacity: 0;
  transition: opacity 0.16s ease;
}

.preloader-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 164, 0, 0.2), transparent 42%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 102, 255, 0.22), transparent 46%);
  filter: saturate(1.18);
  opacity: 0;
  animation: preloaderAmbient 1.4s ease-out 0.15s forwards;
}

.preloader-frame {
  position: absolute;
  inset: clamp(1rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.035);
  opacity: 0;
  transform: scaleX(0.92);
  animation: preloaderFrame 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(86vw, 720px);
  transform: translateY(10px);
  animation: preloaderContentIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-mark-wrap {
  position: relative;
  width: clamp(4.25rem, 10vw, 6.75rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: clamp(1.25rem, 4vw, 2rem);
}

.preloader-mark-wrap::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #ff6a00, #ffa400, #0066ff, #ffffff, #ff6a00);
  filter: blur(14px);
  opacity: 0.42;
  animation: preloaderHalo 2.2s linear infinite;
}

.preloader-mark-ring {
  position: absolute;
  inset: -0.4rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 106, 0, 0.8);
  border-right-color: rgba(0, 102, 255, 0.7);
  animation: preloaderSpin 2.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.preloader-mark {
  position: relative;
  z-index: 1;
  width: 74%;
  height: 74%;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.3));
  opacity: 0;
  transform: scale(0.8) rotate(-6deg);
  animation: preloaderMarkIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.preloader-word {
  display: flex;
  justify-content: center;
  gap: clamp(0.08rem, 0.72vw, 0.46rem);
  font-family: var(--font-headings);
  font-size: clamp(3.1rem, 11vw, 7.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.28));
}

#premium-preloader.loaded .preloader-content {
  transform: translateY(8px) scale(0.985);
  opacity: 0.84;
  transition:
    opacity 0.42s ease,
    transform 0.95s cubic-bezier(0.86, 0, 0.07, 1);
}

.p-letter {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateX(-0.22em);
  transform-origin: 0 50%;
  background: var(--letter-fill, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  clip-path: inset(0 100% 0 0);
  animation: preloaderLetter 0.58s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.45s + (var(--i) * 0.19s));
}

.p-letter::after {
  content: "";
  position: absolute;
  top: 5%;
  right: -0.08em;
  width: 0.06em;
  height: 90%;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.65);
  opacity: 0;
  animation: preloaderLetterCursor 0.42s ease-out forwards;
  animation-delay: calc(0.48s + (var(--i) * 0.19s));
}

.p-orange {
  --letter-fill: linear-gradient(145deg, #ffffff 0%, #ffb24a 18%, #ff6a00 66%, #ffd1a3 100%);
}

.p-yellow {
  --letter-fill: linear-gradient(145deg, #ffffff 0%, #ffd36a 24%, #ffa400 68%, #fff0c4 100%);
}

.p-blue {
  --letter-fill: linear-gradient(145deg, #ffffff 0%, #72a9ff 22%, #0066ff 70%, #dce9ff 100%);
}

.p-white {
  --letter-fill: linear-gradient(145deg, #ffffff 0%, #eef4ff 45%, #aebbd1 100%);
}

.preloader-caption {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.68rem, 1.85vw, 0.88rem);
  font-weight: 800;
  letter-spacing: clamp(0.12rem, 0.7vw, 0.28rem);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: preloaderCaption 0.65s ease-out 2.05s forwards;
}

.preloader-line-container {
  width: min(22rem, 74vw);
  height: 2px;
  margin-top: clamp(1.25rem, 3vw, 1.7rem);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  overflow: hidden;
  opacity: 0;
  animation: preloaderLineIn 0.35s ease-out 1.8s forwards;
}

.preloader-line {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6a00, #ffa400, #ffffff, #0066ff);
  box-shadow: 0 0 24px rgba(255, 164, 0, 0.5);
  animation: preloaderLoadLine 1.25s cubic-bezier(0.16, 1, 0.3, 1) 1.82s forwards;
}

@keyframes preloaderGrid {
  from { transform: perspective(700px) rotateX(58deg) translateY(24%); opacity: 0; }
  to { transform: perspective(700px) rotateX(58deg) translateY(16%); opacity: 0.32; }
}

@keyframes preloaderSweep {
  0% { transform: translateX(-62%) rotate(8deg); opacity: 0; }
  18% { opacity: 1; }
  100% { transform: translateX(64%) rotate(8deg); opacity: 0; }
}

@keyframes preloaderAmbient {
  to { opacity: 1; }
}

@keyframes preloaderFrame {
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes preloaderContentIn {
  to { transform: translateY(0); }
}

@keyframes preloaderHalo {
  to { transform: rotate(360deg); }
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes preloaderMarkIn {
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes preloaderLetter {
  0% { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-0.22em); }
  28% { opacity: 1; }
  100% { opacity: 1; clip-path: inset(0 0 0 0); transform: translateX(0); }
}

@keyframes preloaderLetterCursor {
  0% { opacity: 0; transform: translateX(-0.3em) scaleY(0.65); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateX(0.15em) scaleY(1); }
}

@keyframes preloaderCaption {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderLineIn {
  to { opacity: 1; }
}

@keyframes preloaderLoadLine {
  0% { width: 0%; }
  100% { width: 100%; }
}

@media (max-width: 768px) {
  .preloader-frame {
    inset: 0.8rem;
  }

  .preloader-word {
    gap: 0.08rem;
  }

  .preloader-caption {
    letter-spacing: 0.08rem;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  #premium-preloader,
  #premium-preloader::before,
  #premium-preloader::after,
  .preloader-ambient,
  .preloader-frame,
  .preloader-content,
  .preloader-mark-wrap::before,
  .preloader-mark-ring,
  .preloader-mark,
  .p-letter,
  .p-letter::after,
  .preloader-caption,
  .preloader-line-container,
  .preloader-line {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.hero-content { position: relative; z-index: 2; }
.hero-visual { position: relative; z-index: 2; }

@keyframes pulse-ring {
  0% { transform: translateY(-50%) scale(1); }
  100% { transform: translateY(-50%) scale(1.05); }
}

@keyframes spin-slow {
  100% { transform: rotate(360deg); }
}

/* Flowing Data Pulses Animation for Circuit Board */
.pulse {
  stroke-dasharray: 40 3000;
  stroke-dashoffset: 3000;
  animation: dashPulse linear infinite;
}

.pulse.p1 { animation-duration: 8s; animation-delay: 0s; }
.pulse.p2 { animation-duration: 10s; animation-delay: 2s; }
.pulse.p3 { animation-duration: 7s; animation-delay: 1s; }
.pulse.p4 { animation-duration: 9s; animation-delay: 4s; }
.pulse.p5 { animation-duration: 12s; animation-delay: 0.5s; }
.pulse.p6 { animation-duration: 15s; animation-delay: 3s; }

@keyframes dashPulse {
  to {
    stroke-dashoffset: 0;
  }
}

/* Profile Nav Icon Animation */
.profile-box-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--color-white) !important;
  border: 2px solid #e2e5ef !important;
  color: var(--color-navy) !important;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.profile-box-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 102, 255, 0.2) !important;
  border-color: var(--color-blue) !important;
  color: var(--color-blue) !important;
}
.profile-nav-icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
.profile-box-btn:hover .profile-nav-icon {
  animation: userPulse 1.5s infinite;
}
@keyframes userPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* --- READY-TO-DEPLOY SOLUTIONS BENTO GRID (PREMIUM KRAFTOR DESIGN) --- */
.solutions-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.bento-solution-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bento-solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(255, 106, 0, 0.3);
}

.bento-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.bento-card-identity {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.bento-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 106, 0, 0.2);
}

.bento-icon-box.blue-glow {
  background-color: rgba(0, 102, 255, 0.1);
  color: var(--color-blue);
  border-color: rgba(0, 102, 255, 0.2);
}

.bento-category-tag {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-orange);
  display: block;
  margin-bottom: 0.2rem;
}

.bento-category-tag.blue {
  color: var(--color-blue);
}

.bento-card-identity h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.25;
}

.bento-status-pill {
  font-family: var(--font-headings);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #10B981;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.bento-status-pill.custom {
  color: var(--color-blue);
  background-color: rgba(0, 102, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.25);
}

.bento-card-desc {
  font-size: 0.96rem;
  color: var(--color-gray-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bento-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.bento-chip {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-navy);
  background-color: var(--color-gray-light);
  border: 1px solid var(--color-border);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
}

.bento-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  padding: 1.25rem;
  background-color: rgba(242, 244, 247, 0.5);
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
  border: 1px solid rgba(228, 231, 236, 0.7);
}

.bento-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-navy);
}

.bento-feature-item svg {
  color: var(--color-orange);
  flex-shrink: 0;
}

.bento-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.bento-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.bento-link:hover {
  gap: 0.6rem;
  color: #0044B3;
}

@media (max-width: 992px) {
  .solutions-bento-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .solutions-bento-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 1.25rem !important;
    padding-bottom: 1.5rem !important;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    scrollbar-width: none; /* Firefox */
  }

  .solutions-bento-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .bento-solution-card {
    flex: 0 0 88% !important;
    min-width: 88% !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
  }

  .bento-card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .bento-features-grid {
    grid-template-columns: 1fr;
  }
  .bento-card-action {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .bento-link {
    text-align: center;
    justify-content: center;
  }
}



