/* CSS Variables */
:root {
  --colour-delft-blue-500: #162d4f;
  --colour-delft-blue-100: #d7e3f4;
  --colour-delft-blue-50: #ebf1f9;
  --colour-flame-500: #ee5522;
  --colour-flame-50: #fdede7;
  --colour-neutrals-white: #ffffff;
  --colour-neutrals-800: #333333;
  --colour-neutrals-400: #999999;
  --colour-neutrals-100: #e6e6e6;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--colour-neutrals-800);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Audiowide", cursive;
  color: var(--colour-delft-blue-500);
}

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Header */
.header {
  background: var(--colour-delft-blue-500);
  padding: 24px 80px;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  width: 160px;
  height: 27px;
}

/* Buttons */
.btn {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-primary {
  background: var(--colour-flame-500);
  color: var(--colour-neutrals-white);
  outline: 1px solid var(--colour-neutrals-white);
  outline-offset: -1px;
}

.btn-primary:hover {
  background: #d44a1e;
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-get-started {
  width: fit-content;
}

/* Hero Section */
.hero {
  background: var(--colour-neutrals-white);
  padding: 64px 80px;
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--colour-delft-blue-500);
}

.hero-description {
  font-size: 19px;
  line-height: 28px;
  color: var(--colour-neutrals-800);
}

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 578px;
  height: 513px;
  min-height: 400px;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-shadow-1 {
  position: absolute;
  width: 145px;
  height: 11px;
  transform: rotate(2deg);
  opacity: 0.3;
  background: black;
  box-shadow: 15.28px 15.28px 15.28px;
  border-radius: 131px;
  filter: blur(7.64px);
  top: 50px;
  left: 100px;
}

.hero-shadow-2 {
  position: absolute;
  width: 399px;
  height: 22px;
  opacity: 0.2;
  background: black;
  box-shadow: 15.28px 15.28px 15.28px;
  border-radius: 131px;
  filter: blur(7.64px);
  bottom: 100px;
  right: 50px;
}

.hero-phone-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 21.3%;
  height: 56.7%;
  max-width: 123px;
  max-height: 291px;
}

.hero-phone {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
}

.hero-phone-overlay {
  position: absolute;
  width: 85.4%;
  height: 92.8%;
  top: 3.1%;
  left: 3.3%;
  object-fit: contain;
  transform: none;
}

/* Features Section */
.features {
  background: var(--colour-delft-blue-50);
  padding: 64px 80px;
}

.features-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.features-title {
  font-size: 33px;
  line-height: 48px;
  font-weight: 400;
  color: var(--colour-delft-blue-500);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 16px;
  background: var(--colour-neutrals-white);
  border-radius: 8px;
  outline: 0.8px solid var(--colour-delft-blue-100);
  outline-offset: -0.8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card-highlight {
  background: var(--colour-delft-blue-500);
  outline: none;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(22, 45, 79, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.feature-icon img {
  width: 12px;
  height: 12px;
}

.feature-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--colour-delft-blue-500);
}

.feature-description {
  font-size: 13px;
  line-height: 20px;
  color: var(--colour-neutrals-800);
}

.feature-highlight-text {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: var(--colour-neutrals-white);
  font-family: "Montserrat", sans-serif;
}

/* Mobile Showcase Section */
.mobile-showcase {
  background: var(--colour-neutrals-white);
  background-size: cover;
  background-position: center;
  padding: 64px 80px;
}

.mobile-showcase-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 56px;
}

.mobile-phones {
  position: relative;
  width: 400px;
  height: 500px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-phones-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
}

.mobile-phone-wrapper {
  position: absolute;
  width: 123px;
  height: 291px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
}

.mobile-phone {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
}

.mobile-phone-overlay {
  position: absolute;
  width: 105px;
  height: 270px;
  top: 9px;
  left: 4px;
  object-fit: contain;
  transform: none;
}

/* Phone 1 - Leftmost (rotated left, translated left and down) */
.mobile-phone-1 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-20deg) translate(-80px, 40px);
  z-index: 1;
}

/* Phone 2 - Second from left (less rotation, closer) */
.mobile-phone-2 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-10deg) translate(-30px, 10px);
  z-index: 2;
}

/* Phone 3 - Second from right (slight right rotation) */
.mobile-phone-3 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(5deg) translate(20px, -20px);
  z-index: 3;
  opacity: 1;
}

/* Phone 4 - Rightmost (more rotation, translated right and up) */
.mobile-phone-4 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(15deg) translate(60px, -50px);
  z-index: 4;
  height: 291px;
}

.mobile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-title {
  font-size: 40px;
  font-weight: 400;
  color: var(--colour-delft-blue-500);
}

.mobile-description {
  font-size: 19px;
  line-height: 28px;
  color: var(--colour-neutrals-800);
}

.mobile-features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
}

.mobile-feature-icon {
  width: 32px;
  height: 32px;
  background: var(--colour-flame-50);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-feature-icon img {
  width: 16px;
  height: 16px;
}

.mobile-feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-feature-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--colour-delft-blue-500);
  font-family: "Montserrat", sans-serif;
}

.mobile-feature-description {
  font-size: 13px;
  line-height: 16px;
  color: var(--colour-neutrals-800);
}

.mobile-feature-divider {
  height: 1px;
  background: var(--colour-delft-blue-100);
  margin: 0;
}

/* Contact Section */
.contact {
  background: var(--colour-delft-blue-50);
  padding: 64px 80px;
}

.contact-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 0 0 595px;
  max-width: 100%;
}

.contact-title {
  font-size: 40px;
  font-weight: 400;
  color: var(--colour-delft-blue-500);
}

.contact-description {
  font-size: 19px;
  line-height: 28px;
  color: var(--colour-neutrals-800);
}

.contact-email-card {
  width: 100%;
  max-width: 388px;
  padding: 16px;
  background: var(--colour-neutrals-white);
  border-radius: 12px;
  outline: 0.8px solid var(--colour-delft-blue-100);
  outline-offset: -0.8px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-email-icon {
  width: 40px;
  height: 40px;
  background: var(--colour-flame-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-email-icon img {
  width: 20px;
  height: 20px;
}

.contact-email-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-email-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--colour-delft-blue-500);
}

.contact-email-address {
  font-size: 13px;
  line-height: 20px;
  color: var(--colour-neutrals-800);
}

/* Form Styles */
.contact-form {
  flex: 1;
  padding: 32px;
  background: var(--colour-neutrals-white);
  border-radius: 8px;
  outline: 1px solid var(--colour-delft-blue-100);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--colour-delft-blue-500);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 12px;
  background: var(--colour-neutrals-white);
  border: 1px solid var(--colour-neutrals-100);
  border-radius: 8px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 24px;
  color: var(--colour-neutrals-800);
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--colour-delft-blue-500);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--colour-neutrals-400);
}

.form-textarea {
  min-height: 91px;
  resize: vertical;
}

.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.error-message.show {
  display: block;
}

.form-input.error,
.form-textarea.error {
  border-color: #dc3545;
}

.btn-submit {
  width: 100%;
  padding: 12px 16px;
}

.loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--colour-neutrals-white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-privacy {
  text-align: center;
  font-size: 11px;
  line-height: 16px;
  color: var(--colour-neutrals-800);
  margin-top: 8px;
}

/* Footer */
.footer {
  background: var(--colour-delft-blue-500);
  padding: 24px 80px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-link img {
  width: 16px;
  height: 16px;
}

.footer-copyright {
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container,
  .header,
  .hero,
  .features,
  .mobile-showcase,
  .contact,
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-container,
  .mobile-showcase-container,
  .contact-container {
    gap: 32px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 42px;
  }

  .contact-info {
    flex: 0 0 auto;
  }
}

/* Specific optimisation for 1024px width (tablet landscape) */
@media (max-width: 1024px) and (min-width: 969px) {
  .container,
  .header,
  .hero,
  .features,
  .mobile-showcase,
  .contact,
  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-container {
    gap: 24px;
    align-items: center;
    flex-direction: row;
  }

  .hero-content {
    flex: 0 0 48%;
  }

  .hero-images {
    flex: 0 0 48%;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 17px;
    line-height: 26px;
  }

  .hero-image-wrapper {
    max-width: 480px;
    height: 380px;
    min-height: 380px;
  }

  .hero-phone-wrapper {
    width: 21.3%;
    height: 56.7%;
    max-width: 90px;
    max-height: 215px;
  }

  .features {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .features-container {
    gap: 32px;
  }

  .features-title {
    font-size: 30px;
    line-height: 40px;
  }

  .features-grid {
    gap: 12px;
  }

  .feature-card {
    padding: 14px;
    gap: 16px;
  }

  .mobile-showcase {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mobile-showcase-container {
    gap: 32px;
    flex-direction: row;
    align-items: center;
  }

  .mobile-phones {
    width: 300px;
    height: 380px;
    flex-shrink: 0;
  }

  .mobile-content {
    flex: 1;
    gap: 24px;
  }

  .mobile-title {
    font-size: 32px;
  }

  .mobile-description {
    font-size: 17px;
    line-height: 26px;
  }

  .mobile-feature-item {
    padding: 20px 0;
  }

  .contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-container {
    gap: 32px;
    align-items: flex-start;
    flex-direction: row;
  }

  .contact-info {
    gap: 24px;
    flex: 0 0 45%;
    max-width: 45%;
  }

  .contact-form {
    flex: 1;
    max-width: 55%;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-description {
    font-size: 17px;
    line-height: 26px;
  }

  .contact-email-card {
    max-width: 100%;
  }

  .contact-form {
    flex: 1;
    padding: 24px;
    max-width: 55%;
  }

  .form-group {
    gap: 6px;
  }

  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .form-input,
  .form-textarea {
    padding: 14px 12px;
    font-size: 15px;
  }

  .form-textarea {
    min-height: 80px;
  }
}

/* Optimise for short height screens (landscape tablets) */
@media (max-width: 1024px) and (max-height: 700px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-content {
    gap: 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-image-wrapper {
    height: 320px;
    min-height: 320px;
  }

  .features {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .features-container {
    gap: 24px;
  }

  .features-title {
    font-size: 28px;
    line-height: 36px;
  }

  .mobile-showcase {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .mobile-content {
    gap: 20px;
  }

  .mobile-title {
    font-size: 28px;
  }

  .mobile-description {
    font-size: 16px;
    line-height: 24px;
  }

  .contact {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .contact-info {
    gap: 20px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-description {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 968px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-title {
    font-size: 36px;
    color: var(--colour-delft-blue-500);
  }

  .hero-images {
    width: 100%;
    max-width: 100%;
  }

  .hero-image-wrapper {
    max-width: 100%;
    height: auto;
    min-height: 400px;
  }

  .hero-phone-wrapper {
    width: 21.3%;
    height: 56.7%;
    max-width: 100px;
    max-height: 236px;
  }

  .hero-phone-overlay {
    width: 85.4%;
    height: 92.8%;
  }

  .mobile-showcase-container {
    flex-direction: column;
  }

  .mobile-phones {
    width: 100%;
    max-width: 350px;
    height: 400px;
    margin: 0 auto;
  }

  .mobile-phone-wrapper {
    width: 100px;
    height: 236px;
  }

  .mobile-phone-overlay {
    width: 85px;
    height: 220px;
    top: 7px;
    left: 3px;
  }

  .mobile-phone-1 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-20deg) translate(-60px, 30px);
  }

  .mobile-phone-2 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-10deg) translate(-20px, 8px);
  }

  .mobile-phone-3 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(5deg) translate(15px, -15px);
  }

  .mobile-phone-4 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(15deg) translate(45px, -40px);
    height: 236px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    flex: 1;
    width: 100%;
  }

  .contact-email-card {
    width: 100%;
    max-width: 100%;
  }

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

  .mobile-title {
    font-size: 32px;
  }

  .mobile-content {
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container,
  .header,
  .hero,
  .features,
  .mobile-showcase,
  .contact,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .header-container {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero,
  .features,
  .mobile-showcase,
  .contact {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-title {
    font-size: 28px;
    color: var(--colour-delft-blue-500);
  }

  .hero-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--colour-neutrals-800);
  }

  .mobile-description,
  .contact-description {
    font-size: 16px;
    line-height: 24px;
  }

  .features-title,
  .mobile-title,
  .contact-title {
    font-size: 28px;
    line-height: 36px;
  }

  .logo-img {
    width: 120px;
    height: auto;
  }

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

  .hero-image-wrapper {
    max-width: 100%;
    height: auto;
    min-height: 300px;
  }

  .hero-main-image {
    width: 100%;
    /* height: auto; */
  }

  .hero-phone-wrapper {
    width: 21.3%;
    height: 56.7%;
    max-width: 80px;
    max-height: 190px;
  }

  .hero-phone {
    width: 100%;
    height: 100%;
  }

  .hero-phone-overlay {
    width: 85.4%;
    height: 92.8%;
  }

  .mobile-phones {
    width: 100%;
    max-width: 300px;
    height: 350px;
  }

  .mobile-phone-wrapper {
    width: 80px;
    height: 190px;
  }

  .mobile-phone-overlay {
    width: 68px;
    height: 177px;
    top: 6px;
    left: 2px;
  }

  .mobile-phone-1 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-20deg) translate(-50px, 25px);
  }

  .mobile-phone-2 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-10deg) translate(-15px, 6px);
  }

  .mobile-phone-3 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(5deg) translate(12px, -12px);
  }

  .mobile-phone-4 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(15deg) translate(35px, -32px);
    height: 190px;
  }

  .footer-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

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

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

@media (max-width: 480px) {
  .header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero,
  .features,
  .mobile-showcase,
  .contact,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: 24px;
    color: var(--colour-delft-blue-500);
  }

  .hero-description {
    font-size: 14px;
    line-height: 20px;
  }

  .features-title,
  .mobile-title,
  .contact-title {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-image-wrapper {
    height: 250px;
    min-height: 250px;
  }

  .hero-phone-wrapper {
    width: 21.3%;
    height: 56.7%;
    max-width: 60px;
    max-height: 142px;
  }

  .hero-phone-overlay {
    width: 85.4%;
    height: 92.8%;
  }

  .mobile-phones {
    width: 100%;
    max-width: 300px;
    height: 300px;
  }

  .mobile-phone-wrapper {
    width: 60px;
    height: 142px;
  }

  .mobile-phone-overlay {
    width: 51px;
    height: 133px;
    top: 4px;
    left: 2px;
  }

  .mobile-phone-1 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-20deg) translate(-40px, 20px);
  }

  .mobile-phone-2 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-10deg) translate(-12px, 5px);
  }

  .mobile-phone-3 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(5deg) translate(10px, -10px);
  }

  .mobile-phone-4 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(15deg) translate(28px, -25px);
    height: 142px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .form-input,
  .form-textarea {
    padding: 12px;
    font-size: 14px;
  }

  .mobile-feature-title {
    font-size: 18px;
  }

  .mobile-description,
  .contact-description {
    font-size: 14px;
    line-height: 20px;
  }

  .feature-card {
    padding: 12px;
  }

  .mobile-feature-item {
    padding: 20px 0;
  }

  .contact-email-card {
    padding: 12px;
  }
}
