/* ==============================================================
   WEBSITE-IN AJA — Company Profile Stylesheet
   ============================================================== */

/* --- CSS Variables --- */
:root {
  --navy: #e8e8f0;
  --navy-light: #d0d0e0;
  --orange: #F5931D;
  --orange-hover: #e07f0a;
  --orange-light: #2a1f0a;
  --bg: #0a0a14;
  --bg-card: #12121e;
  --bg-light: #0e0e1a;
  --text: #e8e8f0;
  --text-light: #a0a0b8;
  --text-muted: #707088;
  --border: #1e1e30;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --transition: 0.3s ease;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --container: 1140px;
  --navbar-bg: rgba(10, 10, 20, 0.97);
  --hero-grad-1: #0a0a14;
  --hero-grad-2: #0e0e1a;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.highlight {
  color: var(--orange);
}

.bg-light {
  background: var(--bg-light);
  position: relative;
}

.bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 20%, var(--orange) 80%, transparent 100%);
  opacity: 0.15;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 147, 29, 0.35);
}

.btn-primary.pulse {
  animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
  0% { box-shadow: 0 0 0 0 rgba(245, 147, 29, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(245, 147, 29, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 147, 29, 0); }
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--navbar-bg);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  height: 70px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 50px;
  transition: all var(--transition);
}

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

.btn-nav-wa {
  margin-left: 8px;
  padding: 8px 20px;
  font-size: 0.85rem;
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn-nav-wa:hover {
  background: #1da851;
  border-color: #1da851;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  z-index: 1001;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero --- */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--hero-grad-1) 0%, var(--hero-grad-2) 50%, var(--hero-grad-1) 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,147,29,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,147,29,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
  pointer-events: none;
}

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

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 20px;
  animation: slideUpFade 0.8s ease forwards;
}

.hero-sub {
  animation: slideUpFade 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero-text .btn-lg {
  animation: slideUpFade 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-note {
  animation: slideUpFade 0.8s ease 0.45s forwards;
  opacity: 0;
}

.hero-badges {
  animation: slideUpFade 0.8s ease 0.45s forwards;
  opacity: 0;
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-text h1 .highlight {
  position: relative;
}

.hero-text h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(245, 147, 29, 0.15);
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  filter: brightness(0.85) saturate(0.9);
}

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

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

/* --- Cards (generic) --- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* --- Hero Badges --- */
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(245, 147, 29, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
}

/* --- Why Choose Section --- */
.cards-why {
  counter-reset: why;
}

.card-why {
  text-align: center;
  padding: 36px 24px;
  position: relative;
  overflow: hidden;
}

.card-why::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0;
  transition: all var(--transition);
}

.card-why:hover::after {
  opacity: 1;
  width: 60px;
}

.card-why .icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-light);
  border-radius: 50%;
}

.card-why .icon-wrap svg {
  width: 40px;
  height: 40px;
}

.card-why h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.card-why p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- Decorative dots on sections --- */
.section-decor {
  position: relative;
}

.section-decor::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--orange) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.06;
  pointer-events: none;
  border-radius: 50%;
}

/* --- Pricing Section --- */
.pricing {
  align-items: start;
}

.pricing-card {
  text-align: center;
  padding: 40px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--border);
}

.pricing-card:nth-child(1) { border-top-color: #556; }
.pricing-card:nth-child(2) { border-top-color: var(--orange); }
.pricing-card:nth-child(3) { border-top-color: var(--orange); }

.pricing-card ul {
  text-align: left;
  margin: 20px 0 28px;
  flex: 1;
}

.pricing-card ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--text-light);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}

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

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.pricing-badge {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.pricing-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-card .btn {
  margin-top: auto;
}

/* Featured / popular */
.pricing-featured {
  border: 2px solid var(--orange);
  border-top: 4px solid var(--orange);
  transform: scale(1.04);
  position: relative;
  z-index: 1;
}

.pricing-featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 12px 50px rgba(245, 147, 29, 0.2);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-featured .pricing-badge {
  margin-top: 8px;
}

/* --- Demo Website --- */
.demo-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.demo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.demo-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #e8e2d8;
}

.demo-item {
  border: 1px solid var(--border);
}

.demo-item:hover {
  border-color: var(--orange);
}

.demo-caption {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.demo-badge {
  display: inline-block;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.demo-caption h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.demo-caption p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.demo-caption .btn {
  align-self: flex-start;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.83rem;
}

/* --- Philosophy / About --- */
.philosophy-card {
  text-align: center;
  padding: 40px 28px;
  position: relative;
  border-top: 4px solid transparent;
}

.philosophy-card:nth-child(1) { border-top-color: var(--orange); }
.philosophy-card:nth-child(2) { border-top-color: var(--orange); }
.philosophy-card:nth-child(3) { border-top-color: var(--orange); }

.philosophy-letter {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
}

.philosophy-house {
  margin: -8px auto 12px;
  display: flex;
  justify-content: center;
}

.philosophy-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.philosophy-meaning {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--orange);
  margin-bottom: 14px;
}

.philosophy-card p:last-child {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- Testimonials --- */
.testimonial-card {
  padding: 32px 28px;
}

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

.testimonial-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  font-family: var(--font);
  transition: background var(--transition);
}

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

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, #0A1930 0%, #132744 100%);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,147,29,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,147,29,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

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

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.cta-content .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(245, 147, 29, 0.45);
}

/* --- Footer --- */
.footer {
  background: #070f1a;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  gap: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

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

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

.footer ul li a:hover {
  color: var(--orange);
}

.footer-brand img,
.logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 40px;
  text-align: center;
}

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

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background: rgba(245, 147, 29, 0.1);
  border: 2px solid rgba(245, 147, 29, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preloader-pulse 1.4s ease-in-out infinite;
}

.preloader-logo img {
  width: 72px;
  height: 72px;
}

.preloader-text {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 6px;
  color: var(--navy);
}

.preloader-text::after {
  content: '';
  animation: preloader-dots 1.4s steps(4, end) infinite;
}

.preloader-bar {
  width: 160px;
  height: 4px;
  border-radius: 4px;
  background: var(--border);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 4px;
  background: var(--orange);
  animation: preloader-slide 1.2s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 147, 29, 0.3); }
  50% { transform: scale(1.06); box-shadow: 0 0 30px 6px rgba(245, 147, 29, 0.2); }
}

@keyframes preloader-dots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}

@keyframes preloader-slide {
  0% { transform: translateX(-120%); }
  50% { transform: translateX(150%); }
  100% { transform: translateX(-120%); }
}

/* --- Scroll Animation (fade-in) --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children of grid on visible */
.grid-3.fade-in-stagger > .fade-in:nth-child(1),
.grid-4.fade-in-stagger > .fade-in:nth-child(1),
.pricing > .fade-in:nth-child(1) { transition-delay: 0s; }

.grid-3.fade-in-stagger > .fade-in:nth-child(2),
.grid-4.fade-in-stagger > .fade-in:nth-child(2),
.pricing > .fade-in:nth-child(2) { transition-delay: 0.1s; }

.grid-3.fade-in-stagger > .fade-in:nth-child(3),
.grid-4.fade-in-stagger > .fade-in:nth-child(3),
.pricing > .fade-in:nth-child(3) { transition-delay: 0.2s; }

.grid-4.fade-in-stagger > .fade-in:nth-child(4) { transition-delay: 0.3s; }

/* --- Responsive --- */

/* Tablet & below */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
/* --- Hamburger --- */
  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: all 0.35s ease;
    box-shadow: var(--shadow);
    z-index: 999;
    pointer-events: none;
  }

  .nav-menu.open {
    pointer-events: auto;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .btn-nav-wa {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .hero-sub {
    margin: 0 auto 30px;
  }

  .hero-visual {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-featured {
    transform: none;
  }
  .pricing-featured:hover {
    transform: translateY(-4px);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}
