:root {
  --bg-main: #020814;
  --bg-card: rgba(8, 22, 45, 0.78);
  --bg-card-hover: rgba(12, 34, 68, 0.9);

  --blue: #168bff;
  --blue-2: #00c2ff;
  --blue-dark: #075dff;

  --white: #ffffff;
  --text: #d8e4f5;
  --muted: #8fa4bd;

  --border: rgba(44, 139, 255, 0.25);
  --border-strong: rgba(44, 139, 255, 0.55);

  --shadow-blue: 0 0 35px rgba(22, 139, 255, 0.35);
  --radius: 22px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(22, 139, 255, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(0, 194, 255, 0.13), transparent 25%),
    linear-gradient(180deg, #020814 0%, #030b18 45%, #020814 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: -2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section-padding {
  padding: 75px 0;
}

.bg-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  background: rgba(22, 139, 255, 0.18);
  filter: blur(90px);
  border-radius: 50%;
  z-index: -3;
  pointer-events: none;
}

.bg-glow-1 {
  top: 120px;
  left: -140px;
}

.bg-glow-2 {
  right: -160px;
  top: 340px;
}

.header {
  position: sticky;
  top: 12px;
  z-index: 999;
  padding: 0 0 20px;
}

.nav-container {
  min-height: 70px;
  padding: 0 24px;
  background: rgba(2, 10, 25, 0.9);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}

.logo-icon {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue-dark));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 18px rgba(22, 139, 255, 0.5);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--blue);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(22, 139, 255, 0.8);
}

.btn-header {
  padding: 14px 22px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 0 26px rgba(22, 139, 255, 0.42);
  transition: var(--transition);
}

.btn-header:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 38px rgba(22, 139, 255, 0.65);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  padding: 20px 0 35px;
}

.hero-content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 45px;
}

.hero-image-area {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-frame {
  width: 455px;
  height: 455px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(22, 139, 255, 0.35), rgba(0, 194, 255, 0.18));
  border: 4px solid rgba(22, 139, 255, 0.85);
  box-shadow:
    0 0 18px rgba(22, 139, 255, 0.65),
    0 0 45px rgba(22, 139, 255, 0.38),
    0 0 90px rgba(22, 139, 255, 0.18);
  position: relative;
  z-index: 2;
  animation: floatImage 5s ease-in-out infinite;
  transition: var(--transition);
}

.hero-photo-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 25px rgba(22, 139, 255, 0.85),
    0 0 65px rgba(22, 139, 255, 0.45),
    0 0 110px rgba(22, 139, 255, 0.25);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border: 1px solid var(--border);
  background: rgba(8, 22, 45, 0.72);
  color: var(--blue);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.section-badge i {
  font-size: 0.43rem;
}

.section-badge.center {
  margin-left: auto;
  margin-right: auto;
}

.hello {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.hero-text h1 {
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -4px;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-text h1 span {
  color: var(--blue);
  text-shadow: 0 0 25px rgba(22, 139, 255, 0.8);
}

.hero-text h2 {
  max-width: 740px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.14;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-text h2 strong {
  color: var(--blue);
}

.hero-description {
  max-width: 640px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(8, 22, 45, 0.75);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-icons a:hover {
  transform: translateY(-4px);
  color: var(--white);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-blue);
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 0 30px rgba(22, 139, 255, 0.38);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 45px rgba(22, 139, 255, 0.62);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid var(--border-strong);
  background: rgba(8, 22, 45, 0.48);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.stats-section {
  padding: 25px 0 45px;
}

.stats-box {
  border: 1px solid var(--border);
  background: rgba(5, 16, 36, 0.72);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.stat-item {
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(44, 139, 255, 0.18);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-icon {
  width: 58px;
  height: 58px;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 1.4rem;
  background: rgba(22, 139, 255, 0.08);
}

.stat-item h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 6px;
}

.stat-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-title {
  max-width: 860px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-title h2,
.about-text h2,
.cta-box h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.section-title p,
.about-text p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  margin-bottom: 18px;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.about-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.about-list i {
  color: var(--blue);
}

.about-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  background: rgba(8, 22, 45, 0.65);
  box-shadow: var(--shadow-blue);
}

.about-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.about-card-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(44, 139, 255, 0.18);
}

.about-card-item:last-child {
  border-bottom: 0;
}

.about-card-item i {
  color: var(--blue);
  font-size: 1.7rem;
  margin-top: 4px;
}

.about-card-item h4 {
  color: var(--white);
  margin-bottom: 7px;
}

.about-card-item p {
  color: var(--muted);
  line-height: 1.6;
}

.services-grid,
.projects-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card,
.project-card,
.process-card,
.niche-card,
.solution-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card {
  min-height: 290px;
  padding: 28px;
}

.service-card:hover,
.project-card:hover,
.process-card:hover,
.niche-card:hover,
.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-blue);
}

.service-icon,
.process-icon {
  width: 66px;
  height: 66px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 1.8rem;
  margin-bottom: 22px;
  background: rgba(22, 139, 255, 0.08);
}

.service-card h3,
.project-content h3,
.process-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p,
.project-content p,
.process-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.service-card a {
  color: var(--blue);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.niche-section {
  scroll-margin-top: 120px;
}

.niche-title {
  margin-bottom: 42px;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.niche-card {
  padding: 26px;
}

.niche-icon {
  width: 58px;
  height: 58px;
  border: 1px solid var(--border-strong);
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 1.45rem;
  margin-bottom: 18px;
  background: rgba(22, 139, 255, 0.08);
}

.niche-content h3 {
  color: var(--white);
  font-size: 1.12rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.niche-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.project-image {
  height: 185px;
  overflow: hidden;
  background: #061226;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-image img {
  transform: scale(1.07);
}

.project-content {
  padding: 22px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tags span {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(44, 139, 255, 0.25);
  background: rgba(22, 139, 255, 0.08);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
}

.project-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.9rem;
  transition: var(--transition);
}

.project-link:hover {
  color: var(--white);
  transform: translateX(4px);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  padding: 32px;
}

.solution-card.featured {
  border-color: var(--border-strong);
  box-shadow: 0 0 45px rgba(22, 139, 255, 0.25);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(22, 139, 255, 0.14);
  border: 1px solid var(--border-strong);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.solution-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.solution-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.solution-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.solution-card li {
  color: var(--text);
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  align-items: center;
}

.solution-card li i {
  color: var(--blue);
}

.solution-card a {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(22, 139, 255, 0.32);
}

.process-card {
  padding: 32px 26px;
}

.process-number {
  position: absolute;
  top: -22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #061226;
  border: 2px solid var(--blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(22, 139, 255, 0.65);
  z-index: 2;
}

.benefits {
  padding: 0 0 70px;
}

.benefits-box {
  border: 1px solid var(--border);
  background: rgba(5, 16, 36, 0.76);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.benefit-item {
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-right: 1px solid rgba(44, 139, 255, 0.18);
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-item i {
  color: var(--blue);
  font-size: 1.8rem;
}

.benefit-item h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}

.benefit-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cta-section {
  padding: 20px 0 80px;
}

.cta-box {
  min-height: 190px;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 42px;
  background:
    radial-gradient(circle at 95% 50%, rgba(22, 139, 255, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(22, 139, 255, 0.16), rgba(3, 12, 27, 0.92));
  box-shadow: var(--shadow-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-box p {
  color: var(--muted);
  font-size: 1.05rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #13d66f, #08a84f);
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 0 30px rgba(19, 214, 111, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 45px rgba(19, 214, 111, 0.6);
}

.footer {
  border-top: 1px solid rgba(44, 139, 255, 0.18);
  padding: 45px 0;
  background: rgba(2, 8, 20, 0.72);
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 0.8fr;
  gap: 40px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 340px;
}

.footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: var(--muted);
  margin-bottom: 9px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-copy p {
  color: var(--muted);
  margin-bottom: 8px;
}

.back-top {
  position: absolute;
  right: 38px;
  bottom: 36px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(8, 22, 45, 0.8);
  transition: var(--transition);
}

.back-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@media (max-width: 1100px) {
  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-image-area {
    min-height: 440px;
  }

  .hero-photo-frame {
    width: 400px;
    height: 400px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons,
  .hero-buttons {
    justify-content: center;
  }

  .stats-box,
  .services-grid,
  .projects-grid,
  .process-grid,
  .benefits-box,
  .niche-grid,
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .header {
    top: 0;
    padding-bottom: 10px;
  }

  .nav-container {
    width: 100%;
    border-radius: 0 0 18px 18px;
  }

  .nav-menu {
    position: absolute;
    top: 84px;
    left: 4%;
    right: 4%;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(3, 12, 27, 0.96);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a.active::after,
  .nav-menu a:hover::after {
    display: none;
  }

  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 35px;
  }

  .hero-photo-frame {
    width: 340px;
    height: 340px;
  }

  .hero-image-area {
    min-height: 360px;
  }

  .hero-text h1 {
    letter-spacing: -2px;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .niche-section {
    scroll-margin-top: 105px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(94%, 1180px);
  }

  .section-padding {
    padding: 58px 0;
  }

  .nav-container {
    min-height: 70px;
    padding: 0 18px;
  }

  .logo {
    font-size: 1.12rem;
  }

  .hero {
    padding-top: 25px;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-photo-frame {
    width: 265px;
    height: 265px;
    margin: 0 auto;
  }

  .hero-image-area {
    min-height: 285px;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-text h2 {
    font-size: 1.55rem;
  }

  .hero-description {
    font-size: 0.94rem;
  }

  .stats-section {
    padding-top: 10px;
  }

  .stats-box,
  .services-grid,
  .projects-grid,
  .process-grid,
  .benefits-box,
  .niche-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .niche-section {
    padding-top: 58px;
    padding-bottom: 58px;
    scroll-margin-top: 95px;
  }

  .niche-title {
    margin-bottom: 28px;
  }

  .niche-title h2 {
    font-size: 2rem;
    line-height: 1.18;
    letter-spacing: -1px;
  }

  .niche-title p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .niche-grid {
    gap: 18px;
  }

  .niche-card {
    padding: 22px;
    border-radius: 18px;
  }

  .niche-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .niche-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .niche-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .stat-item,
  .benefit-item {
    border-right: 0;
    border-bottom: 1px solid rgba(44, 139, 255, 0.18);
  }

  .stat-item:last-child,
  .benefit-item:last-child {
    border-bottom: 0;
  }

  .stat-item {
    padding: 24px;
  }

  .service-card,
  .project-card,
  .process-card,
  .about-card,
  .solution-card {
    border-radius: 18px;
  }

  .solution-card {
    padding: 24px;
  }

  .popular {
    position: static;
    display: inline-flex;
    margin-bottom: 16px;
  }

  .cta-box {
    padding: 28px 22px;
  }

  .btn-whatsapp {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .back-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
  }
}

@media (max-width: 420px) {
  .hero-photo-frame {
    width: 250px;
    height: 250px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}