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

:root {
  --primary: #0066ff;
  --secondary: #00d4ff;
  --accent: #ff3366;
  --dark: #0a0e27;
  --text: #2d3748;
  --light: #f7fafc;
  --border: #e2e8f0;
}

body {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.privacy-content p {
  margin: 0;
  font-size: 14px;
}

.privacy-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.privacy-actions a {
  color: var(--secondary);
  text-decoration: underline;
  font-size: 14px;
}

.privacy-actions button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  position: relative;
}

.nav a:hover {
  color: var(--primary);
}

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

.nav a:hover::after {
  width: 100%;
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.mega-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1f3a 50%, var(--dark) 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0,102,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,212,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255,51,102,0.05) 0%, transparent 50%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.mega-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 30px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.mega-hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.1;
}

.mega-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 5px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-secondary {
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 10px 30px rgba(0,102,255,0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,102,255,0.4);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

section {
  padding: 80px 0;
}

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

.section-header.centered {
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,102,255,0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.expertise {
  background: white;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.expertise-card {
  padding: 35px;
  background: var(--light);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.expertise-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(0,102,255,0.1);
}

.expertise-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
}

.icon-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.1;
}

.icon-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
}

.expertise-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.expertise-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}
.showcase {
  background: var(--light);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.showcase-content h2 {
  margin-bottom: 20px;
}

.showcase-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.showcase-features {
  margin: 30px 0;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  font-size: 15px;
}

.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
  flex-shrink: 0;
}

.feature-check::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.methodology {
  background: white;
}

.methodology-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.methodology-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,102,255,0.3);
}

.timeline-marker span {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.timeline-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.timeline-content p {
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 14px;
}

.timeline-duration {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0,102,255,0.1);
  color: var(--primary);
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.technology {
  background: var(--light);
}

.technology-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.technology-content h2 {
  margin-bottom: 20px;
}

.technology-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.tech-item {
  padding: 12px 20px;
  background: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.tech-item:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.technology-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.results {
  background: white;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.result-card {
  background: var(--light);
  padding: 35px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.result-quote {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--text);
}

.author-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
  margin-bottom: 5px;
}

.author-title {
  font-size: 13px;
  color: var(--text);
  opacity: 0.8;
}

.industries {
  background: var(--light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.industry-item {
  padding: 20px;
  background: white;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.industry-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.final-cta {
  background: linear-gradient(135deg, var(--dark), #1a1f3a);
  color: white;
  text-align: center;
}

.final-cta-content h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.final-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.7;
}
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  color: white;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.content-section {
  background: white;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-layout.reverse {
  direction: rtl;
}

.content-layout.reverse > * {
  direction: ltr;
}

.content-text h2 {
  margin-bottom: 20px;
}

.content-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.content-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.packages {
  background: var(--light);
}

.packages h2 {
  text-align: center;
  margin-bottom: 50px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.package-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,102,255,0.1);
}

.package-card.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0,102,255,0.2);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.package-card h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
}

.package-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.package-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.benefits {
  background: white;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 25px;
}

.benefit-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.benefit-item p {
  font-size: 14px;
}

.ecommerce-features {
  background: var(--light);
}

.ecommerce-features h2 {
  text-align: center;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--border);
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.feature-box h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-box p {
  font-size: 14px;
}

.store-packages {
  background: white;
}

.store-packages h2 {
  text-align: center;
  margin-bottom: 50px;
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 80px 0;
  text-align: center;
}

.contact-hero h1 {
  color: white;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.contact-main {
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-section h2 {
  margin-bottom: 20px;
}

.contact-info-section p {
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-item p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.contact-form-section {
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
}

.contact-form h2 {
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form button {
  width: 100%;
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: var(--secondary);
}

.map-section {
  background: var(--light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.thankyou-section, .error-section {
  background: white;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-content, .error-content {
  text-align: center;
  max-width: 600px;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
}

.error-content h1 {
  margin: 20px 0;
}

.error-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.thankyou-content h1 {
  margin-bottom: 20px;
}

.thankyou-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.thankyou-actions, .error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-hero {
  background: linear-gradient(135deg, var(--dark), var(--text));
  color: white;
  padding: 60px 0;
  text-align: center;
}

.policy-hero h1 {
  color: white;
  margin-bottom: 10px;
}

.policy-hero p {
  opacity: 0.9;
  font-size: 14px;
}

.policy-content {
  background: white;
  padding: 70px 0;
}

.policy-text {
  max-width: 900px;
  margin: 0 auto;
}

.policy-text h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.policy-text h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.policy-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy-text strong {
  color: var(--dark);
  font-weight: 600;
}

.footer {
  background: var(--dark);
  color: white;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info p {
  font-size: 13px;
  opacity: 0.9;
}

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

.footer-links a {
  font-size: 13px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav a::after {
    display: none;
  }

  .mega-hero {
    min-height: 90vh;
  }

  .mega-hero h1 {
    font-size: 2.2rem;
  }

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

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .page-hero {
    padding: 50px 0;
  }

  section {
    padding: 50px 0;
  }

  .showcase-layout,
  .content-layout,
  .contact-wrapper,
  .technology-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-layout.reverse {
    direction: ltr;
  }

  .expertise-grid,
  .results-grid,
  .packages-grid,
  .benefits-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .tech-list {
    grid-template-columns: 1fr;
  }

  .methodology-timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-marker {
    width: 40px;
    height: 40px;
  }

  .timeline-marker span {
    font-size: 1.2rem;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .error-code {
    font-size: 5rem;
  }

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

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }

  .container {
    padding: 0 15px;
  }

  .mega-hero h1 {
    font-size: 1.8rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
  }

  .package-price {
    font-size: 2rem;
  }

  .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .expertise-card,
  .package-card,
  .feature-box,
  .benefit-item {
    padding: 20px;
  }

  .contact-form-section {
    padding: 25px;
  }

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

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

@media (max-width: 320px) {
  body {
    font-size: 13px;
  }

  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }

  .logo {
    font-size: 1.1rem;
  }

  .mega-hero {
    min-height: 80vh;
  }

  .mega-hero h1 {
    font-size: 1.5rem;
  }

  section {
    padding: 40px 0;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .btn-hero-primary, .btn-hero-secondary {
    padding: 12px 25px;
    font-size: 14px;
  }
}
