/* egrafic agency - style.css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0a0a;
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: #e3ea1c;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e3ea1c;
  border: 1px solid rgba(227, 234, 28, 0.3);
  background: rgba(227, 234, 28, 0.15);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #888888;
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #e3ea1c;
  color: #000000;
  border-color: #e3ea1c;
}

.btn-primary:hover {
  background: #c5cc10;
  border-color: #c5cc10;
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(227, 234, 28, 0.2);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: #e3ea1c;
  color: #e3ea1c;
  transform: translateY(-2px);
}

.btn-dark {
  background: #000000;
  color: #e3ea1c;
  border-color: #000000;
}

.btn-dark:hover {
  background: #161616;
  transform: translateY(-2px);
}
.announcement-bar {
  background: #e3ea1c;
  color: #000000;
  text-align: center;
  padding: 10px 48px;
  font-size: 0.875rem;
  font-weight: 600;
  position: relative;
  z-index: 1000;
}

.announcement-bar strong {
  font-weight: 900;
}

.ann-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #000000;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.ann-close:hover {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888888;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta-btn {
  font-size: 0.875rem;
  font-weight: 700;
  color: #000000;
  background: #e3ea1c;
  padding: 9px 22px;
  border-radius: 7px;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.nav-cta-btn:hover {
  background: #c5cc10;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(rgba(227, 234, 28, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(227, 234, 28, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 234, 28, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 120px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e3ea1c;
  border: 1px solid rgba(227, 234, 28, 0.3);
  background: rgba(227, 234, 28, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e3ea1c;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-accent {
  color: #e3ea1c;
  display: block;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #888888;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: #ffffff;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #e3ea1c;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #888888;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888888;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #888888, transparent);
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.domain-section {
  background: #111111;
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.domain-checker-box {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  max-width: 760px;
  margin: 0 auto 40px;
}

.domain-input-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.domain-input {
  flex: 1;
  min-width: 200px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
}

.domain-input::placeholder {
  color: #888888;
}

.domain-input:focus {
  border-color: #e3ea1c;
}

.domain-ext-toggle {
  display: flex;
  gap: 4px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 4px;
}

.ext-btn {
  padding: 10px 16px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #888888;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  cursor: pointer;
}

.ext-btn.active {
  background: #e3ea1c;
  color: #000000;
}

.domain-result {
  margin-top: 24px;
  min-height: 48px;
  font-size: 1rem;
  font-weight: 600;
}

.domain-result.available {
  color: #4ade80;
}

.domain-result.taken {
  color: #f87171;
}

.domain-result.loading {
  color: #888888;
}

.domain-result.error {
  color: #888888;
  font-size: 0.9rem;
}

.domain-info-cards {
  display: flex;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.domain-card {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: border-color 0.3s;
}

.domain-card:hover {
  border-color: rgba(227, 234, 28, 0.3);
}

.domain-card-ext {
  font-size: 1.8rem;
  font-weight: 900;
  color: #e3ea1c;
  margin-bottom: 12px;
}

.domain-card p {
  font-size: 0.9rem;
  color: #888888;
  line-height: 1.6;
}
.services-strip {
  padding: 96px 0;
  background: #0a0a0a;
}

.strip-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-item {
  flex: 1;
  min-width: 220px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.service-item:hover {
  border-color: rgba(227, 234, 28, 0.3);
  transform: translateY(-4px);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(227, 234, 28, 0.15);
  border: 1px solid rgba(227, 234, 28, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #e3ea1c;
}

.service-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.875rem;
  color: #888888;
  line-height: 1.6;
}
.pricing-section {
  padding: 96px 0;
  background: #111111;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-grid {
  display: flex;
  gap: 24px;
  align-items: start;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  border-color: rgba(227, 234, 28, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 0 32px rgba(227, 234, 28, 0.2);
}

.pricing-card.featured {
  border-color: #e3ea1c;
  background: #1a1a1a;
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.plan-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #e3ea1c;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-tag {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 4px;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e3ea1c;
  line-height: 1.6;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: #888888;
  line-height: 2;
}

.plan-billing {
  font-size: 0.8rem;
  color: #888888;
  margin-bottom: 28px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #f0f0f0;
}

.plan-features li svg {
  flex-shrink: 0;
  color: #e3ea1c;
}

.plan-btn {
  width: 100%;
  justify-content: center;
}
.cta-band {
  padding: 80px 0;
  background: #e3ea1c;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 8px;
}

.cta-band-text p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.65);
}

.site-footer {
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding: 72px 24px 48px;
}

.footer-brand {
  flex: 2;
  min-width: 220px;
}

.footer-nav-group {
  flex: 1;
  min-width: 140px;
}

.footer-newsletter {
  flex: 1.5;
  min-width: 200px;
}

.footer-logo {
  margin-bottom: 16px;
  height: 36px;
  width: auto;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #888888;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: #e3ea1c;
  color: #e3ea1c;
  background: rgba(227, 234, 28, 0.15);
}

.footer-nav-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: #888888;
  transition: color 0.2s;
}

.footer-nav-list a:hover {
  color: #e3ea1c;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
  color: #888888;
  line-height: 1.6;
}

.footer-address a {
  color: #e3ea1c;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 160px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: #888888;
}

.newsletter-input:focus {
  border-color: #e3ea1c;
}

.newsletter-btn {
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 12px 20px;
}

.footer-payments {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-payments img {
  height: 24px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-payments img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.8rem;
  color: #888888;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: #888888;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: #e3ea1c;
}

.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.wa-tooltip {
  position: absolute;
  left: 66px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: #e3ea1c;
  color: #000000;
  border-color: #e3ea1c;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .services-grid {
    flex-wrap: wrap;
  }

  .service-item {
    min-width: 45%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100vh;
  width: 100%;
  background: #0a0a0a;
  flex-direction: column;
  justify-content: flex-start;
  padding: 100px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 998;
  overflow-y: auto;
}

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 14px 16px;
    display: block;
  }

  .nav-cta-btn {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 14px;
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-content {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .stat-divider {
    display: none;
  }

  .domain-info-cards {
    flex-direction: column;
  }

  .domain-checker-box {
    padding: 24px 16px;
  }

  .domain-input-wrap {
    flex-direction: column;
  }

  .domain-input {
    width: 100%;
  }

  .domain-ext-toggle {
    width: 100%;
    justify-content: center;
  }

  .domain-search-btn {
    width: 100%;
  }

  .service-item {
    min-width: 45%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
    padding: 48px 24px 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-item {
    min-width: 100%;
  }

  .pricing-card {
    min-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .announcement-bar {
    padding: 10px 40px 10px 16px;
    font-size: 0.8rem;
  }
}