/* TileXpertSoftware — Landing Page */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --blue:        #2B7CC4;
  --blue-h:      #2269ad;
  --blue-xl:     rgba(43,124,196,0.11);
  --orange:      #F26522;
  --orange-h:    #d95510;
  --navy:        #0d1a2e;
  --navy-mid:    #142440;
  --navy-card:   #1c325a;
  --white:       #fcfcfd;
  --gray-50:     #f7f9fb;
  --gray-100:    #f0f4f8;
  --gray-200:    #dde4ed;
  --gray-300:    #bfcdd8;
  --gray-400:    #8fa2b6;
  --gray-600:    #4f6278;
  --text:        #111d2c;
  --text-mid:    #2d3f57;
  --text-muted:  #5e7387;
  --font-h:      'Barlow', sans-serif;
  --font-b:      'DM Sans', sans-serif;
  --r-xs:  5px;
  --r:     10px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --sh-sm: 0 2px 8px rgba(13,26,46,0.06);
  --sh:    0 4px 20px rgba(13,26,46,0.08);
  --sh-md: 0 8px 32px rgba(13,26,46,0.11);
  --sh-lg: 0 16px 56px rgba(13,26,46,0.14);
  --sh-xl: 0 24px 80px rgba(13,26,46,0.18);
  --t:     all 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button,input,textarea,select { font-family: var(--font-b); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 820px;  margin: 0 auto; padding: 0 28px; }
.section      { padding: 96px 0; }
.section-sm   { padding: 64px 0; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-desc { margin: 0 auto; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-xl); color: var(--blue);
  font-size: 0.71rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 14px;
  white-space: nowrap; width: fit-content;
}
.sec-title {
  font-family: var(--font-h);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 700; line-height: 1.15; color: var(--text); margin-bottom: 14px;
}
.sec-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; line-height: 1.75; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-size: 0.97rem; font-weight: 600;
  cursor: pointer; transition: var(--t); border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.btn-lg { padding: 15px 34px; font-size: 1.05rem; border-radius: var(--r-md); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

.btn-orange  { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover  { background: var(--orange-h); border-color: var(--orange-h); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(242,101,34,0.38); }
.btn-blue    { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover    { background: var(--blue-h); border-color: var(--blue-h); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(43,124,196,0.35); }
.btn-out-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-out-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }
.btn-out-blue  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-out-blue:hover  { background: var(--blue); color: #fff; transform: translateY(-1px); }
.btn-out-nav   { background: transparent; color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.35); }
.btn-out-nav:hover   { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.75); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 82px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.solid {
  background: rgba(12,25,44,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { height: 74px; display: flex; align-items: center; justify-content: flex-start; }
.nav-logo img { height: 100%; width: auto; display: block; object-fit: contain; object-position: center; }
.nav-center { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--r-xs);
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.72); transition: var(--t);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-sw { display: flex; align-items: center; background: rgba(255,255,255,0.08); border-radius: var(--r-xs); padding: 3px; gap: 2px; }
.lang-btn { padding: 4px 8px; border-radius: 4px; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.05em; color: rgba(255,255,255,0.5); background: none; border: none; cursor: pointer; transition: var(--t); }
.lang-btn.active { color: #fff; background: rgba(255,255,255,0.18); }
.lang-btn:hover:not(.active) { color: rgba(255,255,255,0.85); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(43,124,196,0.28) 0%, transparent 65%),
    repeating-linear-gradient(0deg,  transparent, transparent 79px, rgba(255,255,255,0.022) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.022) 80px);
  padding: 120px 28px 64px;
}
.hero-content { max-width: 860px; width: 100%; text-align: center; position: relative; z-index: 1; }
.hero-logo { height: 150px; width: auto; margin: 0 auto 36px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(43,124,196,0.18); border: 1px solid rgba(43,124,196,0.38);
  color: rgba(255,255,255,0.88); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 26px; white-space: nowrap;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 32px;
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.62); font-size: 1.13rem; line-height: 1.78;
  max-width: 600px; margin: 0 auto 40px;
}
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); overflow: hidden;
  max-width: 760px; margin: 0 auto;
}
.hero-stat { padding: 22px 12px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--font-h); font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 5px; }
.hero-stat-num b { color: var(--orange); }
.hero-stat-label { font-size: 0.73rem; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; }

/* Scroll offset for fixed nav */
#inicio, #nosotros, #servicios, #capturas, #testimonios, #planes, #contacto {
  scroll-margin-top: 90px;
}
.about { background: var(--white); padding-top: 64px; padding-bottom: 48px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text p { color: var(--text-mid); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.about-feats { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; justify-content: center; }
.about-feat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-radius: var(--r-md);
  border: 1px solid var(--gray-200); background: var(--gray-50); transition: var(--t);
}
.about-feat:hover { border-color: var(--blue); background: var(--white); box-shadow: var(--sh); }
.af-icon { width: 42px; height: 42px; border-radius: var(--r); background: var(--blue-xl); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); }
.af-text h4 { font-family: var(--font-h); font-size: 0.97rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.af-text p  { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--gray-50); }
.srv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.srv-card {
  background: var(--white); border-radius: var(--r-md); padding: 28px 22px;
  border: 1px solid var(--gray-200); transition: var(--t);
}
.srv-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--blue); }
.srv-icon { width: 48px; height: 48px; border-radius: var(--r); background: var(--blue-xl); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--blue); }
.srv-card h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 9px; }
.srv-card p  { font-size: 0.865rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   SCREENSHOTS
   ============================================================ */
.screenshots { background: var(--white); }
.sc-tabs { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.sc-tab {
  padding: 9px 20px; border-radius: 100px;
  border: 1.5px solid var(--gray-200); background: transparent;
  font-size: 0.875rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: var(--t);
}
.sc-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.sc-tab:hover:not(.active) { border-color: var(--blue); color: var(--blue); }
.browser {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-xl); border: 1px solid var(--gray-200);
  max-width: 980px; margin: 0 auto;
}
.browser-bar {
  background: #edeef0; padding: 10px 14px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f56; } .dot-y { background: #ffbd2e; } .dot-g { background: #27c93f; }
.browser-url {
  flex: 1; background: #fff; border-radius: 6px; padding: 5px 12px;
  font-size: 0.75rem; color: var(--gray-400); border: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: 5px;
}
.browser-img { width: 100%; display: block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: linear-gradient(135deg, #eef5ff 0%, #f7f9fb 100%); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.test-card {
  background: var(--white); border-radius: var(--r-md); padding: 32px;
  box-shadow: var(--sh); border: 1px solid rgba(43,124,196,0.07); transition: var(--t);
}
.test-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.test-stars { display: flex; gap: 3px; margin-bottom: 18px; color: #f59e0b; font-size: 1rem; }
.test-quote { font-size: 0.97rem; line-height: 1.75; color: var(--text-mid); font-style: italic; margin-bottom: 22px; }
.test-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--gray-100); }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-xl); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-weight: 700; font-size: 0.9rem; color: var(--blue); flex-shrink: 0; }
.test-name { font-family: var(--font-h); font-weight: 700; font-size: 0.9rem; color: var(--text); }
.test-role { font-size: 0.78rem; color: var(--text-muted); margin-top: 1px; }

/* ============================================================
   PLANS
   ============================================================ */
.plans { background: var(--white); padding-top: 52px; padding-bottom: 80px; }
.plans .sec-head { margin-bottom: 20px; }
.plans .sec-desc { max-width: 780px; white-space: nowrap; }
.plans .tag { margin-bottom: 8px; }
.plans .sec-title { margin-bottom: 10px; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.plan-card { border-radius: var(--r-md); padding: 22px 20px; border: 1.5px solid var(--gray-200); background: var(--white); transition: var(--t); position: relative; display: flex; flex-direction: column; }
.plan-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.plan-card.featured { background: var(--navy); border-color: var(--navy); box-shadow: var(--sh-xl); border-top: 3px solid var(--orange); }

.plan-badge { display: inline-block; padding: 3px 9px; border-radius: 100px; font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; white-space: nowrap; }
.plan-badge-ph { height: 22px; margin-bottom: 8px; display: block; }
.badge-rec { background: var(--orange); color: #fff; }
.badge-lim { background: var(--blue-xl); color: var(--blue); }
.badge-cus { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.8); }

.plan-name { font-family: var(--font-h); font-size: 1.25rem; font-weight: 800; margin-bottom: 5px; }
.plan-card:not(.featured) .plan-name { color: var(--text); }
.plan-card.featured .plan-name { color: #fff; }

.plan-users {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem; font-weight: 600; padding: 3px 9px; border-radius: 100px; margin-bottom: 10px; white-space: nowrap;
}
.plan-card:not(.featured) .plan-users { background: var(--blue-xl); color: var(--blue); }
.plan-card.featured .plan-users { background: rgba(43,124,196,0.28); color: rgba(255,255,255,0.9); }

.plan-desc { font-size: 0.82rem; line-height: 1.55; margin-bottom: 14px; }
.plan-card:not(.featured) .plan-desc { color: var(--text-muted); }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.65); }

.plan-high { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid; }
.plan-card:not(.featured) .plan-high { border-color: var(--gray-200); }
.plan-card.featured .plan-high { border-color: rgba(255,255,255,0.1); }
.plan-high-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 600; }
.plan-card:not(.featured) .plan-high-item { color: var(--text); }
.plan-card.featured .plan-high-item { color: rgba(255,255,255,0.9); }
.ph-check { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.plan-card:not(.featured) .ph-check { background: rgba(39,201,63,0.14); color: #15a34a; }
.plan-card.featured .ph-check { background: rgba(39,201,63,0.22); color: #4ade80; }

.plan-feats { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; flex: 1; }
.plan-feat { display: flex; align-items: center; gap: 7px; font-size: 0.79rem; }
.plan-card:not(.featured) .plan-feat { color: var(--text-muted); }
.plan-card.featured .plan-feat { color: rgba(255,255,255,0.58); }
.pf-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.plan-card:not(.featured) .pf-dot { background: var(--blue); }
.plan-card.featured .pf-dot { background: rgba(255,255,255,0.35); }

.plan-btn { width: 100%; justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--sh-md); border: 1px solid var(--gray-200); }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grp  { margin-bottom: 16px; }
.form-lbl  { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.05em; text-transform: uppercase; }
.form-inp {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--r); font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: var(--t); outline: none; appearance: none;
}
.form-inp:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,124,196,0.1); }
.form-inp::placeholder { color: var(--gray-300); }
textarea.form-inp { resize: vertical; min-height: 110px; }
select.form-inp {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238fa2b6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-ok { text-align: center; padding: 36px 16px; }
.form-ok-icon { width: 62px; height: 62px; background: rgba(39,201,63,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: #15a34a; }
.form-ok h3  { font-family: var(--font-h); font-size: 1.3rem; color: var(--text); margin-bottom: 10px; }
.form-ok p   { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.contact-info { padding-top: 8px; }
.ci-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 22px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; padding: 17px 18px; background: var(--white); border-radius: var(--r-md); border: 1px solid var(--gray-200); margin-bottom: 12px; transition: var(--t); }
.ci-item:hover { border-color: var(--blue); box-shadow: var(--sh-sm); }
.ci-icon { width: 40px; height: 40px; border-radius: var(--r); background: var(--blue-xl); display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.ci-text strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 2px; letter-spacing: 0.04em; text-transform: uppercase; }
.ci-text span   { font-size: 0.9rem; color: var(--text-mid); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 270px; }
.footer-col-ttl { font-family: var(--font-h); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-lnk { font-size: 0.875rem; color: rgba(255,255,255,0.58); transition: var(--t); cursor: pointer; }
.footer-lnk:hover { color: #fff; }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-leg { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-leg-lnk { font-size: 0.75rem; color: rgba(255,255,255,0.38); cursor: pointer; transition: var(--t); }
.footer-leg-lnk:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-ov {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,20,38,0.7); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.modal-box {
  background: var(--white); border-radius: var(--r-lg);
  max-width: 720px; width: 100%; max-height: 82vh;
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--sh-xl);
}
.modal-hd { padding: 22px 28px; border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; }
.modal-hd h2 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--text); }
.modal-x { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-100); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1rem; transition: var(--t); }
.modal-x:hover { background: var(--gray-200); }
.modal-bd { padding: 28px; overflow-y: auto; flex: 1; }
.modal-bd h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--text); margin: 20px 0 8px; }
.modal-bd h3:first-child { margin-top: 0; }
.modal-bd p  { font-size: 0.9rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 10px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.55s cubic-bezier(0.4,0,0.2,1) both; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.2s; } .d3 { animation-delay: 0.3s; } .d4 { animation-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .srv-grid, .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-4px); }
  .test-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .srv-grid, .plans-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-logo { height: 60px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav-center { display: none; }
  .browser-bar .browser-url { display: none; }
}
