/* DG Touch — main stylesheet */
:root {
  --c-red: #e62429;
  --c-yellow: #f5b800;
  --c-blue: #29abe2;
  --c-black: #0d0d0d;
  --c-dark: #1e1f26;
  --c-gray: #6b6f7b;
  --c-light: #f6f7f9;
  --c-white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(13, 13, 13, 0.08);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--c-black);
  background: var(--c-white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; }

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-red);
  background: rgba(232, 36, 42, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
}

.section-head p {
  color: var(--c-gray);
  margin-top: 14px;
  font-size: 16px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--c-red), var(--c-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--c-red);
  color: var(--c-white);
}
.btn-primary:hover { background: #c81d22; transform: translateY(-2px); }

.btn-outline {
  border-color: var(--c-black);
  color: var(--c-black);
}
.btn-outline:hover { background: var(--c-black); color: var(--c-white); }

.btn-light {
  border-color: var(--c-white);
  color: var(--c-white);
}
.btn-light:hover { background: var(--c-white); color: var(--c-black); }

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

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.brand img { height: 42px; width: auto; }

.footer-grid .brand-footer img {
  height: 40px;
  width: auto;
  background: var(--c-white);
  padding: 6px 12px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--c-black);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--c-red);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--c-red); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--c-red); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--c-black); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  padding: 180px 0 110px;
  background: radial-gradient(circle at 80% 20%, rgba(247, 181, 0, 0.12), transparent 55%),
              radial-gradient(circle at 10% 80%, rgba(27, 160, 226, 0.1), transparent 50%),
              var(--c-light);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero p.lead {
  font-size: 18px;
  color: var(--c-gray);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats .stat strong { font-size: 28px; font-weight: 800; display: block; color: var(--c-black); }
.hero-stats .stat span { font-size: 14px; color: var(--c-gray); }

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art .blob {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), var(--c-yellow));
  opacity: 0.18;
  filter: blur(10px);
}

.hero-art img {
  position: relative;
  z-index: 2;
  width: 320px;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.15));
}

/* Logo strip */
.brand-strip {
  padding: 36px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.brand-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.brand-strip span {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
  color: var(--c-gray);
}
.brand-strip .tags { display: flex; gap: 14px; flex-wrap: wrap; }
.brand-strip .tags span.tag {
  background: var(--c-light);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--c-black);
}

/* Services / cards grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--c-white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  border-color: transparent;
}

.card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--c-white);
}
.icon-red { background: var(--c-red); }
.icon-yellow { background: var(--c-yellow); }
.icon-blue { background: var(--c-blue); }
.icon-black { background: var(--c-black); }

.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--c-gray); font-size: 15px; }
.card a.learn { display: inline-block; margin-top: 16px; font-weight: 700; color: var(--c-red); font-size: 14px; }

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.step { text-align: center; position: relative; padding: 0 12px; }
.step .num {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.step h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--c-gray); }

/* Portfolio */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: var(--c-white);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--c-black); color: var(--c-white); border-color: var(--c-black); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-light);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-item .ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: var(--c-gray);
  background: linear-gradient(135deg, #eef0f3, #e3e6ea);
}
.portfolio-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,21,26,0.85), rgba(20,21,26,0.1));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .overlay { opacity: 1; }
.portfolio-item .overlay span.cat {
  color: var(--c-yellow); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.portfolio-item .overlay h4 { color: var(--c-white); font-size: 18px; margin-top: 4px; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial {
  background: var(--c-light);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial .stars { color: var(--c-yellow); margin-bottom: 14px; font-size: 15px; }
.testimonial p.quote { font-size: 15px; color: var(--c-black); margin-bottom: 22px; }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), var(--c-yellow));
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white); font-weight: 700;
}
.testimonial .who strong { font-size: 14px; display: block; }
.testimonial .who span { font-size: 13px; color: var(--c-gray); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--c-black), #2a2c36);
  border-radius: 18px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--c-white);
}
.cta-band h2 { font-size: 30px; font-weight: 800; max-width: 480px; }
.cta-band p { color: #b9bac1; margin-top: 10px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--c-light), #eef0f3);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.about-photo img { width: 65%; }
.value-list { display: grid; gap: 18px; margin-top: 28px; }
.value-list .value { display: flex; gap: 16px; align-items: flex-start; }
.value-list .check {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(232,36,42,0.1); color: var(--c-red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; flex-shrink: 0;
}
.value-list h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.value-list p { font-size: 14px; color: var(--c-gray); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 10px; }
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1/1; border-radius: 14px;
  background: linear-gradient(135deg, #eef0f3, #e3e6ea);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gray); font-weight: 700; font-size: 22px;
}
.team-card h4 { font-size: 16px; font-weight: 700; }
.team-card span { font-size: 13px; color: var(--c-gray); }

/* Page hero (sub pages) */
.page-hero {
  padding: 160px 0 70px;
  background: var(--c-light);
  text-align: center;
}
.page-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 14px; }
.breadcrumb { color: var(--c-gray); font-size: 14px; }
.breadcrumb a { color: var(--c-red); font-weight: 600; }

/* Services detail list */
.service-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.service-detail .card { display: flex; gap: 20px; align-items: flex-start; }
.service-detail .card .icon { flex-shrink: 0; margin-bottom: 0; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.price-card {
  border: 1px solid #eee; border-radius: var(--radius);
  padding: 38px 30px; text-align: center; transition: var(--transition);
}
.price-card.featured { border-color: var(--c-red); box-shadow: var(--shadow); position: relative; }
.price-card.featured::before {
  content: "Most Popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--c-red); color: var(--c-white); font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 20px;
}
.price-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.price-card .amount { font-size: 40px; font-weight: 800; margin: 14px 0; }
.price-card .amount span { font-size: 15px; color: var(--c-gray); font-weight: 500; }
.price-card ul { margin: 26px 0; text-align: left; display: grid; gap: 12px; }
.price-card ul li { font-size: 14px; color: var(--c-gray); display: flex; gap: 10px; }
.price-card ul li::before { content: "✓"; color: var(--c-red); font-weight: 800; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}
.contact-info .item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info .icon { width: 48px; height: 48px; border-radius: 12px; }
.contact-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.contact-info p, .contact-info a { font-size: 14px; color: var(--c-gray); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 700; }
.field input, .field select, .field textarea {
  padding: 13px 16px; border: 1px solid #ddd; border-radius: 8px;
  font-family: inherit; font-size: 14px; transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-red);
}
.field.full { grid-column: 1 / -1; }
#form-status { margin-top: 14px; font-size: 14px; font-weight: 600; }

.map-embed {
  border-radius: var(--radius); overflow: hidden; margin-top: 60px;
  aspect-ratio: 16/5; background: var(--c-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gray); font-weight: 700;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 22px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 700; font-size: 16px;
}
.faq-q .plus { font-size: 22px; transition: var(--transition); }
.faq-item.open .faq-q .plus { transform: rotate(45deg); color: var(--c-red); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  color: var(--c-gray); font-size: 14px;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

/* Footer */
.site-footer {
  background: var(--c-black);
  color: #c7c8cf;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid .brand { color: var(--c-white); margin-bottom: 16px; }
.footer-grid p { font-size: 14px; line-height: 1.8; }
.footer-grid h4 { color: var(--c-white); font-size: 15px; margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 10px; font-size: 14px; }
.footer-grid ul li a:hover { color: var(--c-yellow); }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition);
}
.social-row a:hover { background: var(--c-red); }
.footer-bottom {
  padding: 22px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: #8a8b94;
}

/* Back to top */
.back-top {
  position: fixed; right: 26px; bottom: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--c-red); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; z-index: 999;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.back-top.show { opacity: 1; pointer-events: auto; }

/* Animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .pricing-grid, .testimonial-grid, .portfolio-grid, .team-grid, .service-detail, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; position: absolute; top: 84px; left: 0; right: 0;
    background: var(--c-white); flex-direction: column; padding: 24px; gap: 18px;
    box-shadow: var(--shadow);
  }
  .hero { padding: 140px 0 70px; }
  .hero h1 { font-size: 36px; }
  .grid-3, .grid-4, .pricing-grid, .testimonial-grid, .portfolio-grid, .team-grid, .service-detail, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px; text-align: center; justify-content: center; }
  .section-head h2 { font-size: 28px; }
}
