@charset "UTF-8";
@font-face {
  font-family: 'Inter';
  src: url("fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Inter';
  src: url("fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Inter';
  src: url("fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Inter';
  src: url("fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Inter';
  src: url("fonts/Inter-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap; }
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #A23469;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  z-index: 200000;
  font-weight: 600;
  border-radius: 0 0 8px 0;
  transition: top 0.2s ease; }
  .skip-link:focus {
    top: 0;
    outline: 3px solid #000000;
    outline-offset: 2px; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #F6F4F0;
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden; }

*:focus-visible {
  outline: 3px solid #A23469;
  outline-offset: 3px; }

a:focus-visible, button:focus-visible {
  outline: 3px solid #A23469;
  outline-offset: 3px; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes pulse {
  0%, 100% {
    transform: scale(1); }
  50% {
    transform: scale(1.05); } }
@keyframes flowAnimation {
  0% {
    stroke-dashoffset: 1000; }
  100% {
    stroke-dashoffset: 0; } }
@keyframes float {
  0%, 100% {
    transform: translateY(0px); }
  50% {
    transform: translateY(-20px); } }
@keyframes floatSlow {
  0%, 100% {
    transform: translate(0, 0) scale(1); }
  50% {
    transform: translate(-60px, -60px) scale(1.15); } }
@keyframes rotateBackground {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(246, 244, 240, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 5%;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .navbar .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; }
  .navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #A23469;
    text-decoration: none;
    letter-spacing: -1px;
    z-index: 1001; }
    .navbar .logo .ai {
      color: #000000; }
  .navbar .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001; }
    .navbar .hamburger span {
      display: block;
      width: 28px;
      height: 3px;
      background: #000000;
      border-radius: 3px;
      transition: all 0.3s ease; }
    .navbar .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px); }
    .navbar .hamburger.active span:nth-child(2) {
      opacity: 0; }
    .navbar .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(8px, -8px); }
  .navbar .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none; }
    .navbar .nav-links a {
      text-decoration: none;
      color: #000000;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative; }
      .navbar .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #A23469;
        transition: width 0.3s ease; }
      .navbar .nav-links a:hover {
        color: #A23469; }
        .navbar .nav-links a:hover::after {
          width: 100%; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden; }
  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(162, 52, 105, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite; }
  .hero .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center; }
  .hero .hero-content {
    animation: slideInLeft 1s ease-out; }
    .hero .hero-content h1 {
      font-size: 4rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: #000000; }
      .hero .hero-content h1 .highlight {
        color: #A23469;
        position: relative;
        display: inline-block; }
    .hero .hero-content p {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
      color: rgba(0, 0, 0, 0.7);
      line-height: 1.8; }
    .hero .hero-content .cta-buttons {
      display: flex;
      gap: 1.5rem; }
      .hero .hero-content .cta-buttons .btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block; }
        .hero .hero-content .cta-buttons .btn.btn-primary {
          background: #A23469;
          color: #ffffff; }
          .hero .hero-content .cta-buttons .btn.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(162, 52, 105, 0.3); }
        .hero .hero-content .cta-buttons .btn.btn-secondary {
          background: transparent;
          color: #000000;
          border: 2px solid #000000; }
          .hero .hero-content .cta-buttons .btn.btn-secondary:hover {
            background: #000000;
            color: #F6F4F0;
            transform: translateY(-2px); }
  .hero .hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out; }
    .hero .hero-visual .tech-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem; }
      .hero .hero-visual .tech-grid .tech-card {
        background: #ffffff;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease; }
        .hero .hero-visual .tech-grid .tech-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); }
        .hero .hero-visual .tech-grid .tech-card h3 {
          color: #A23469;
          margin-bottom: 0.8rem;
          font-size: 1.3rem;
          font-weight: 700; }
        .hero .hero-visual .tech-grid .tech-card p {
          font-size: 0.95rem;
          color: rgba(0, 0, 0, 0.7);
          line-height: 1.6; }

.services {
  padding: 100px 5%;
  background: #ffffff; }
  .services .container {
    max-width: 1400px;
    margin: 0 auto; }
  .services .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out; }
    .services .section-header h2 {
      font-size: 3rem;
      line-height: 1.1;
      margin-bottom: 1rem;
      font-weight: 800;
      color: #000000; }
      .services .section-header h2 span {
        color: #A23469; }
    .services .section-header p {
      font-size: 1.2rem;
      color: rgba(0, 0, 0, 0.6);
      max-width: 600px;
      margin: 0 auto; }
  .services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem; }
    .services .services-grid .service-card {
      background: #ffffff;
      padding: 0;
      border-radius: 16px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }
      .services .services-grid .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }
      .services .services-grid .service-card .service-number {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 4rem;
        font-weight: 900;
        color: rgba(162, 52, 105, 0.1);
        line-height: 1; }
      .services .services-grid .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #000000;
        font-weight: 700;
        padding: 2.5rem 2.5rem 0; }
      .services .services-grid .service-card .service-lead {
        color: rgba(0, 0, 0, 0.7);
        line-height: 1.7;
        margin-bottom: 2rem;
        padding: 0 2.5rem; }
      .services .services-grid .service-card .service-details {
        background: #F6F4F0;
        padding: 2rem 2.5rem 2.5rem; }
        .services .services-grid .service-card .service-details .detail-item {
          padding: 1rem 0;
          border-bottom: 1px solid rgba(0, 0, 0, 0.08);
          display: flex;
          flex-direction: column;
          gap: 0.3rem; }
          .services .services-grid .service-card .service-details .detail-item:last-child {
            border-bottom: none; }
          .services .services-grid .service-card .service-details .detail-item strong {
            color: #A23469;
            font-weight: 700;
            font-size: 0.95rem; }
          .services .services-grid .service-card .service-details .detail-item span {
            color: rgba(0, 0, 0, 0.6);
            font-size: 0.9rem;
            line-height: 1.5; }

.workflow {
  padding: 100px 5%;
  background: #ffffff;
  position: relative; }
  .workflow .container {
    max-width: 1200px;
    margin: 0 auto; }
  .workflow .section-header {
    text-align: center;
    margin-bottom: 5rem; }
    .workflow .section-header h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #000000; }
      .workflow .section-header h2 span {
        color: #A23469; }
    .workflow .section-header p {
      font-size: 1.2rem;
      color: rgba(0, 0, 0, 0.6); }
  .workflow .workflow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative; }
    .workflow .workflow-grid::before {
      content: '';
      position: absolute;
      top: 100px;
      left: 10%;
      right: 10%;
      height: 3px;
      background: linear-gradient(to right, #A23469, rgba(162, 52, 105, 0.3));
      z-index: 0; }
    .workflow .workflow-grid .workflow-item {
      position: relative;
      z-index: 1;
      text-align: center;
      animation: fadeInUp 1s ease-out;
      animation-fill-mode: both; }
      .workflow .workflow-grid .workflow-item:nth-child(1) {
        animation-delay: 0.1s; }
      .workflow .workflow-grid .workflow-item:nth-child(2) {
        animation-delay: 0.2s; }
      .workflow .workflow-grid .workflow-item:nth-child(3) {
        animation-delay: 0.3s; }
      .workflow .workflow-grid .workflow-item:nth-child(4) {
        animation-delay: 0.4s; }
      .workflow .workflow-grid .workflow-item:nth-child(5) {
        animation-delay: 0.5s; }
      .workflow .workflow-grid .workflow-item .workflow-number {
        width: 200px;
        height: 200px;
        margin: 0 auto 3rem;
        background: #ffffff;
        border: 4px solid #A23469;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        font-weight: 900;
        color: #A23469;
        box-shadow: 0 10px 40px rgba(162, 52, 105, 0.15);
        transition: all 0.4s ease;
        position: relative; }
        .workflow .workflow-grid .workflow-item .workflow-number::after {
          content: '';
          position: absolute;
          width: 100%;
          height: 100%;
          border-radius: 50%;
          border: 4px solid #A23469;
          opacity: 0;
          transform: scale(1.15);
          transition: all 0.4s ease; }
        .workflow .workflow-grid .workflow-item .workflow-number:hover {
          background: #A23469;
          color: #ffffff;
          transform: scale(1.1);
          box-shadow: 0 15px 50px rgba(162, 52, 105, 0.3); }
          .workflow .workflow-grid .workflow-item .workflow-number:hover::after {
            opacity: 0.3;
            transform: scale(1.3); }
      .workflow .workflow-grid .workflow-item .workflow-info h3 {
        font-size: 1.3rem;
        color: #000000;
        margin-bottom: 0.8rem;
        font-weight: 700; }
      .workflow .workflow-grid .workflow-item .workflow-info p {
        font-size: 0.95rem;
        color: rgba(0, 0, 0, 0.6);
        line-height: 1.6; }

.team {
  padding: 8rem 5%;
  background: #ffffff;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.08); }
  .team .team-container {
    max-width: 1400px;
    margin: 0 auto; }
  .team .team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center; }
  .team .team-text .team-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(162, 52, 105, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    width: fit-content;
    color: #A23469; }
  .team .team-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    color: #000000; }
  .team .team-text .team-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 4rem; }
  .team .team-text .team-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem; }
  .team .team-text .team-info .team-role {
    font-size: 1.1rem;
    color: #A23469;
    font-weight: 600;
    margin-bottom: 2rem; }
  .team .team-text .team-info .team-expertise {
    list-style: none;
    padding: 0; }
    .team .team-text .team-info .team-expertise li {
      padding: 0.8rem 0;
      padding-left: 2rem;
      position: relative;
      font-size: 1rem;
      color: rgba(0, 0, 0, 0.8);
      line-height: 1.6; }
      .team .team-text .team-info .team-expertise li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: #A23469;
        font-weight: 700;
        font-size: 1.2rem; }
  .team .team-image {
    position: relative; }
    .team .team-image .image-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); }
      .team .team-image .image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.6s ease; }
      .team .team-image .image-wrapper:hover img {
        transform: scale(1.05); }
      .team .team-image .image-wrapper .image-accent {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 150px;
        height: 150px;
        background: #A23469;
        border-radius: 20px;
        z-index: -1;
        opacity: 0.15; }
  @media (max-width: 1024px) {
    .team {
      padding: 6rem 5%; }
      .team .team-content {
        gap: 5rem; }
      .team .team-text h2 {
        font-size: 3rem; } }
  @media (max-width: 768px) {
    .team {
      padding: 4rem 5%; }
      .team .team-content {
        grid-template-columns: 1fr;
        gap: 3rem; }
      .team .team-text h2 {
        font-size: 2.5rem; }
      .team .team-text .team-intro {
        font-size: 1.1rem; }
      .team .team-image {
        order: -1; } }
  .team::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%); }

.pricing {
  padding: 8rem 5% 10rem 5%;
  background: #F6F4F0;
  position: relative; }
  .pricing .pricing-container {
    max-width: 1400px;
    margin: 0 auto; }
  .pricing .pricing-header {
    text-align: center;
    margin-bottom: 5rem; }
    .pricing .pricing-header .pricing-badge {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background: rgba(162, 52, 105, 0.1);
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 2rem;
      color: #A23469; }
    .pricing .pricing-header h2 {
      font-size: 3rem;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      font-weight: 800;
      color: #000000; }
    .pricing .pricing-header .pricing-subtitle {
      font-size: 1.2rem;
      color: rgba(0, 0, 0, 0.6);
      max-width: 600px;
      margin: 0 auto; }
  .pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem; }
  .pricing .pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent; }
    .pricing .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12); }
    .pricing .pricing-card.featured {
      border: 2px solid #A23469;
      transform: scale(1.05); }
      .pricing .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px); }
      .pricing .pricing-card.featured .pricing-btn.primary {
        background: #A23469;
        color: #ffffff; }
        .pricing .pricing-card.featured .pricing-btn.primary:hover {
          background: #7b2850; }
    .pricing .pricing-card .pricing-badge-card {
      position: absolute;
      top: -15px;
      right: 30px;
      background: #A23469;
      color: #ffffff;
      padding: 0.5rem 1.2rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600; }
    .pricing .pricing-card .pricing-card-header {
      margin-bottom: 2rem; }
      .pricing .pricing-card .pricing-card-header h3 {
        font-size: 2rem;
        font-weight: 800;
        color: #000000;
        margin-bottom: 0.5rem; }
      .pricing .pricing-card .pricing-card-header .pricing-desc {
        font-size: 1rem;
        color: rgba(0, 0, 0, 0.6); }
    .pricing .pricing-card .pricing-price {
      margin-bottom: 2.5rem;
      padding-bottom: 2.5rem;
      border-bottom: 2px solid rgba(0, 0, 0, 0.08); }
      .pricing .pricing-card .pricing-price .price-amount {
        display: block;
        font-size: 3rem;
        font-weight: 800;
        color: #A23469;
        line-height: 1;
        margin-bottom: 0.5rem; }
      .pricing .pricing-card .pricing-price .price-period {
        font-size: 1rem;
        color: rgba(0, 0, 0, 0.5);
        font-weight: 500; }
    .pricing .pricing-card .pricing-features {
      list-style: none;
      padding: 0;
      margin-bottom: 2.5rem; }
      .pricing .pricing-card .pricing-features li {
        padding: 0.9rem 0;
        padding-left: 2rem;
        position: relative;
        font-size: 0.95rem;
        color: rgba(0, 0, 0, 0.8);
        line-height: 1.5;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
        .pricing .pricing-card .pricing-features li:last-child {
          border-bottom: none; }
        .pricing .pricing-card .pricing-features li::before {
          content: '✓';
          position: absolute;
          left: 0;
          color: #A23469;
          font-weight: 700;
          font-size: 1.2rem; }
    .pricing .pricing-card .pricing-btn {
      display: block;
      width: 100%;
      padding: 1rem 2rem;
      background: #ffffff;
      border: 2px solid #000000;
      color: #000000;
      text-align: center;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease; }
      .pricing .pricing-card .pricing-btn:hover {
        background: #000000;
        color: #ffffff;
        transform: translateY(-2px); }
      .pricing .pricing-card .pricing-btn.primary {
        background: #A23469;
        border-color: #A23469;
        color: #ffffff; }
        .pricing .pricing-card .pricing-btn.primary:hover {
          background: #7b2850;
          border-color: #7b2850; }
  .pricing .pricing-note {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    border: 2px dashed rgba(162, 52, 105, 0.3); }
    .pricing .pricing-note p {
      font-size: 1.05rem;
      color: #000000;
      margin: 0; }
      .pricing .pricing-note p strong {
        color: #A23469; }
  @media (max-width: 1024px) {
    .pricing {
      padding: 6rem 5%; }
      .pricing .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem; }
      .pricing .pricing-card.featured {
        transform: scale(1); }
        .pricing .pricing-card.featured:hover {
          transform: translateY(-10px); }
      .pricing .pricing-header h2 {
        font-size: 3rem; } }
  @media (max-width: 768px) {
    .pricing {
      padding: 4rem 5%; }
      .pricing .pricing-header {
        margin-bottom: 3rem; }
        .pricing .pricing-header h2 {
          font-size: 2.5rem; }
        .pricing .pricing-header .pricing-subtitle {
          font-size: 1.1rem; }
      .pricing .pricing-card {
        padding: 2rem 1.5rem; }
        .pricing .pricing-card .pricing-card-header h3 {
          font-size: 1.6rem; }
        .pricing .pricing-card .pricing-price .price-amount {
          font-size: 2.5rem; } }

.privacy {
  padding: 0;
  background: #000000;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center; }
  .privacy .privacy-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh; }
  .privacy .privacy-left {
    background: #000000;
    color: #ffffff;
    padding: 8% 10% 8% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden; }
    .privacy .privacy-left::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle at center, rgba(162, 52, 105, 0.5) 0%, rgba(162, 52, 105, 0.2) 30%, transparent 60%);
      animation: rotateBackground 15s linear infinite; }
    .privacy .privacy-left::after {
      content: '';
      position: absolute;
      top: 50%;
      left: -25%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(162, 52, 105, 0.5) 0%, rgba(162, 52, 105, 0.25) 40%, transparent 70%);
      animation: floatSlow 8s ease-in-out infinite;
      transform: translateY(-50%); }
    .privacy .privacy-left .privacy-header {
      margin-bottom: 4rem;
      position: relative;
      z-index: 1; }
      .privacy .privacy-left .privacy-header h2 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        font-weight: 800; }
        .privacy .privacy-left .privacy-header h2 span {
          color: #A23469;
          font-weight: 300; }
      .privacy .privacy-left .privacy-header .privacy-tagline {
        font-size: 1.3rem;
        opacity: 0.8;
        font-weight: 300; }
    .privacy .privacy-left .compliance-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
      position: relative;
      z-index: 1; }
      .privacy .privacy-left .compliance-grid .compliance-item .compliance-label {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 0.6;
        margin-bottom: 0.8rem; }
      .privacy .privacy-left .compliance-grid .compliance-item .compliance-value {
        font-size: 2.2rem;
        font-weight: 800;
        color: #A23469;
        margin-bottom: 0.5rem;
        line-height: 1; }
      .privacy .privacy-left .compliance-grid .compliance-item .compliance-desc {
        font-size: 0.95rem;
        opacity: 0.7;
        line-height: 1.5; }
  .privacy .privacy-right {
    background: #ece8e0;
    padding: 8%;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .privacy .privacy-right .security-features {
      margin-bottom: 3rem; }
      .privacy .privacy-right .security-features .security-feature {
        margin-bottom: 3rem; }
        .privacy .privacy-right .security-features .security-feature:last-child {
          margin-bottom: 0; }
        .privacy .privacy-right .security-features .security-feature .feature-header {
          display: flex;
          align-items: center;
          gap: 1rem;
          margin-bottom: 1rem; }
          .privacy .privacy-right .security-features .security-feature .feature-header .feature-line {
            width: 4px;
            height: 40px;
            background: #A23469; }
          .privacy .privacy-right .security-features .security-feature .feature-header h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #000000;
            margin: 0; }
        .privacy .privacy-right .security-features .security-feature p {
          color: rgba(0, 0, 0, 0.7);
          line-height: 1.8;
          padding-left: 2rem; }
    .privacy .privacy-right .certification-bar {
      display: flex;
      gap: 1.5rem;
      padding: 2rem 0;
      border-top: 2px solid rgba(0, 0, 0, 0.1); }
      .privacy .privacy-right .certification-bar .cert {
        padding: 0.8rem 1.5rem;
        background: #ffffff;
        border: 2px solid #000000;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.9rem;
        color: #000000;
        transition: all 0.3s ease; }
        .privacy .privacy-right .certification-bar .cert:hover {
          background: #000000;
          color: #ffffff;
          transform: translateY(-2px); }

.cta-section {
  padding: 0;
  background: linear-gradient(135deg, #A23469 0%, #7b2850 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden; }
  .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%; }
  .cta-section .cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    position: relative;
    z-index: 1; }
  .cta-section .cta-left {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .cta-section .cta-left .cta-badge {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 2rem;
      width: fit-content;
      backdrop-filter: blur(10px); }
    .cta-section .cta-left h2 {
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      font-weight: 800; }
      .cta-section .cta-left h2 span {
        background: #ffffff;
        color: #A23469;
        padding: 0 0.3rem;
        display: inline-block; }
    .cta-section .cta-left p {
      font-size: 1.3rem;
      margin-bottom: 3rem;
      opacity: 0.95;
      line-height: 1.6; }
    .cta-section .cta-left .cta-stats {
      display: flex;
      gap: 3rem; }
      .cta-section .cta-left .cta-stats .stat .stat-number {
        font-size: 3rem;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 0.5rem; }
      .cta-section .cta-left .cta-stats .stat .stat-label {
        font-size: 0.95rem;
        opacity: 0.8; }
  .cta-section .cta-right {
    background: #ffffff;
    padding: 5rem;
    display: flex;
    align-items: center; }
    .cta-section .cta-right .cta-form-container {
      width: 100%; }
      .cta-section .cta-right .cta-form-container h3 {
        font-size: 2rem;
        color: #000000;
        margin-bottom: 2rem;
        font-weight: 700; }
      .cta-section .cta-right .cta-form-container .cta-form {
        display: flex;
        flex-direction: column;
        gap: 1rem; }
        .cta-section .cta-right .cta-form-container .cta-form input,
        .cta-section .cta-right .cta-form-container .cta-form textarea,
        .cta-section .cta-right .cta-form-container .cta-form select {
          padding: 1rem 1.5rem;
          border: 2px solid rgba(0, 0, 0, 0.1);
          border-radius: 8px;
          font-size: 1rem;
          font-family: inherit;
          transition: all 0.3s ease;
          background-color: #ffffff; }
          .cta-section .cta-right .cta-form-container .cta-form input:focus,
          .cta-section .cta-right .cta-form-container .cta-form textarea:focus,
          .cta-section .cta-right .cta-form-container .cta-form select:focus {
            outline: none;
            border-color: #A23469;
            box-shadow: 0 0 0 3px rgba(162, 52, 105, 0.1); }
          .cta-section .cta-right .cta-form-container .cta-form input::placeholder,
          .cta-section .cta-right .cta-form-container .cta-form textarea::placeholder,
          .cta-section .cta-right .cta-form-container .cta-form select::placeholder {
            color: rgba(0, 0, 0, 0.4); }
        .cta-section .cta-right .cta-form-container .cta-form select {
          cursor: pointer;
          appearance: none;
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
          background-repeat: no-repeat;
          background-position: right 1.2rem center;
          padding-right: 3rem;
          color: #000000;
          -webkit-appearance: none;
          -moz-appearance: none; }
          .cta-section .cta-right .cta-form-container .cta-form select option {
            color: #000000; }
        .cta-section .cta-right .cta-form-container .cta-form textarea {
          resize: vertical;
          min-height: 100px; }
        .cta-section .cta-right .cta-form-container .cta-form .form-field {
          position: relative;
          display: flex;
          flex-direction: column; }
        .cta-section .cta-right .cta-form-container .cta-form .error-message {
          display: none;
          color: #B91C50;
          font-size: 0.875rem;
          margin-top: 0.25rem;
          font-weight: 500;
          line-height: 1.4; }
        .cta-section .cta-right .cta-form-container .cta-form .field-error {
          border-color: #B91C50 !important; }
          .cta-section .cta-right .cta-form-container .cta-form .field-error:focus {
            box-shadow: 0 0 0 3px rgba(185, 28, 80, 0.15) !important; }
        .cta-section .cta-right .cta-form-container .cta-form .form-field-checkbox {
          margin-top: 0.5rem; }
          .cta-section .cta-right .cta-form-container .cta-form .form-field-checkbox .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            cursor: pointer;
            font-size: 0.9rem;
            line-height: 1.6;
            color: #000000; }
            .cta-section .cta-right .cta-form-container .cta-form .form-field-checkbox .checkbox-label input[type="checkbox"] {
              margin-top: 0.25rem;
              width: 18px;
              height: 18px;
              cursor: pointer;
              flex-shrink: 0;
              accent-color: #A23469; }
            .cta-section .cta-right .cta-form-container .cta-form .form-field-checkbox .checkbox-label a {
              color: #A23469;
              text-decoration: none;
              font-weight: 600; }
              .cta-section .cta-right .cta-form-container .cta-form .form-field-checkbox .checkbox-label a:hover {
                text-decoration: underline; }
        .cta-section .cta-right .cta-form-container .cta-form .form-required-note {
          font-size: 0.85rem;
          color: rgba(0, 0, 0, 0.6);
          margin-top: 0.5rem;
          margin-bottom: 0.5rem; }
        .cta-section .cta-right .cta-form-container .cta-form .btn-submit {
          padding: 1.2rem 2rem;
          background: #A23469;
          color: #ffffff;
          border: none;
          border-radius: 8px;
          font-size: 1.1rem;
          font-weight: 700;
          cursor: pointer;
          transition: all 0.3s ease;
          margin-top: 0.5rem; }
          .cta-section .cta-right .cta-form-container .cta-form .btn-submit:hover:not(:disabled) {
            background: #7b2850;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(162, 52, 105, 0.3); }
          .cta-section .cta-right .cta-form-container .cta-form .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed; }
      .cta-section .cta-right .cta-form-container #form-messages {
        margin-bottom: 1rem; }
      .cta-section .cta-right .cta-form-container .form-note {
        margin-top: 1.5rem;
        text-align: center;
        font-size: 0.95rem;
        color: rgba(0, 0, 0, 0.6); }
        .cta-section .cta-right .cta-form-container .form-note a {
          color: #A23469;
          text-decoration: none;
          font-weight: 600; }
          .cta-section .cta-right .cta-form-container .form-note a:hover {
            text-decoration: underline; }

.footer {
  background: #F6F4F0;
  padding: 60px 5% 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .footer .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem; }
    .footer .footer-container .footer-col h4 {
      margin-bottom: 1.5rem;
      color: #A23469;
      font-size: 1.2rem; }
    .footer .footer-container .footer-col p {
      color: rgba(0, 0, 0, 0.7);
      line-height: 1.8; }
    .footer .footer-container .footer-col ul {
      list-style: none; }
      .footer .footer-container .footer-col ul li {
        margin-bottom: 0.8rem; }
        .footer .footer-container .footer-col ul li a {
          color: rgba(0, 0, 0, 0.7);
          text-decoration: none;
          transition: color 0.3s ease; }
          .footer .footer-container .footer-col ul li a:hover {
            color: #A23469; }
  .footer .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.6); }

@media (max-width: 1200px) {
  .hero .hero-container {
    gap: 4rem; }

  .section-header h2,
  .team-text h2,
  .pricing-header h2 {
    font-size: 2.5rem; } }
@media (max-width: 1024px) {
  .navbar .nav-container {
    padding: 0 3%; }
  .navbar .nav-links {
    gap: 1.5rem;
    font-size: 0.9rem; }

  .hero {
    padding: 6rem 3% 4rem; }
    .hero .hero-container {
      grid-template-columns: 1fr;
      gap: 3rem; }
    .hero .hero-content h1 {
      font-size: 3rem; }

  .services {
    padding: 80px 3%; }
    .services .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem; }

  .workflow {
    padding: 80px 3%; }
    .workflow .workflow-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem; }
      .workflow .workflow-grid::before {
        display: none; }

  .team {
    padding: 6rem 3%; }
    .team .team-content {
      gap: 4rem; }

  .pricing {
    padding: 6rem 3% 8rem; }
    .pricing .pricing-grid {
      gap: 2rem; }

  .privacy .privacy-split {
    grid-template-columns: 1fr; }
  .privacy .privacy-left {
    padding: 5rem 5%; }
  .privacy .privacy-right {
    padding: 5rem 5%; }
  .privacy .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; }

  .cta-section .cta-content {
    grid-template-columns: 1fr; }
  .cta-section .cta-left,
  .cta-section .cta-right {
    padding: 4rem 5%; } }
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0; }
    .navbar .nav-container {
      flex-direction: row;
      gap: 0;
      padding: 0 5%; }
    .navbar .logo {
      font-size: 1.3rem; }
    .navbar .hamburger {
      display: flex; }
    .navbar .nav-links {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      height: calc(100vh - 70px);
      background: rgba(246, 244, 240, 0.98);
      backdrop-filter: blur(10px);
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 0;
      padding: 2rem 5%;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      border-top: 1px solid rgba(0, 0, 0, 0.1); }
      .navbar .nav-links.active {
        transform: translateX(0); }
      .navbar .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
      .navbar .nav-links a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem; }
        .navbar .nav-links a::after {
          display: none; }

  .hero {
    padding: 5rem 5% 3rem; }
    .hero .hero-content h1 {
      font-size: 2.2rem;
      line-height: 1.1; }
    .hero .hero-content p {
      font-size: 1rem; }
    .hero .cta-buttons {
      flex-direction: column;
      gap: 1rem; }
      .hero .cta-buttons .btn {
        width: 100%;
        text-align: center; }
    .hero .hero-visual .tech-grid {
      grid-template-columns: 1fr;
      gap: 1rem; }

  .services {
    padding: 60px 5%; }
    .services .section-header h2 {
      font-size: 2rem; }
    .services .services-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem; }
    .services .service-card {
      padding: 0; }
      .services .service-card .service-number {
        font-size: 5rem; }
      .services .service-card > h3 {
        font-size: 1.5rem; }

  .workflow {
    padding: 60px 5%; }
    .workflow .section-header h2 {
      font-size: 2rem; }
    .workflow .workflow-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem; }
      .workflow .workflow-grid .workflow-item {
        padding: 2rem; }
        .workflow .workflow-grid .workflow-item .workflow-number {
          width: 60px;
          height: 60px;
          font-size: 1.5rem; }
        .workflow .workflow-grid .workflow-item .workflow-info h3 {
          font-size: 1.3rem; }
        .workflow .workflow-grid .workflow-item .workflow-info p {
          font-size: 0.95rem; }

  .team {
    padding: 60px 5%; }
    .team .team-content {
      grid-template-columns: 1fr;
      gap: 3rem; }
    .team .team-text h2 {
      font-size: 2rem; }
    .team .team-text .team-intro {
      font-size: 1rem; }
    .team .team-text .team-info h3 {
      font-size: 1.5rem; }

  .pricing {
    padding: 60px 5% 80px; }
    .pricing .pricing-header h2 {
      font-size: 2rem; }
    .pricing .pricing-header .pricing-subtitle {
      font-size: 1rem; }
    .pricing .pricing-grid {
      grid-template-columns: 1fr;
      gap: 2rem; }
    .pricing .pricing-card {
      padding: 2.5rem 2rem; }
      .pricing .pricing-card.featured {
        transform: scale(1); }
        .pricing .pricing-card.featured:hover {
          transform: translateY(-10px); }
      .pricing .pricing-card .pricing-card-header h3 {
        font-size: 1.8rem; }
      .pricing .pricing-card .pricing-price .price-amount {
        font-size: 2.5rem; }

  .privacy {
    min-height: auto; }
    .privacy .privacy-split {
      grid-template-columns: 1fr; }
    .privacy .privacy-left {
      padding: 4rem 5%; }
      .privacy .privacy-left .privacy-header {
        margin-bottom: 3rem; }
        .privacy .privacy-left .privacy-header h2 {
          font-size: 2rem; }
        .privacy .privacy-left .privacy-header .privacy-tagline {
          font-size: 1rem; }
      .privacy .privacy-left .compliance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem; }
    .privacy .privacy-right {
      padding: 4rem 5%; }
      .privacy .privacy-right .security-feature {
        margin-bottom: 2rem; }
        .privacy .privacy-right .security-feature .feature-header h4 {
          font-size: 1.1rem; }
        .privacy .privacy-right .security-feature p {
          font-size: 0.9rem; }
      .privacy .privacy-right .certification-bar {
        flex-wrap: wrap;
        gap: 1rem; }
        .privacy .privacy-right .certification-bar .cert {
          font-size: 0.8rem;
          padding: 0.6rem 1rem;
          flex: 0 0 calc(50% - 0.5rem);
          text-align: center; }

  .cta-section .cta-left h2 {
    font-size: 2rem; }
  .cta-section .cta-left p {
    font-size: 1rem; }
  .cta-section .cta-stats {
    flex-direction: column;
    gap: 1.5rem; }
  .cta-section .cta-right .contact-form .form-row {
    grid-template-columns: 1fr; }

  .footer {
    padding: 3rem 5% 2rem; }
    .footer .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem; }
    .footer .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center; } }
@media (max-width: 480px) {
  .hero .hero-content h1 {
    font-size: 1.8rem; }

  .section-header h2,
  .team-text h2,
  .pricing-header h2,
  .privacy-left .privacy-header h2,
  .cta-left h2 {
    font-size: 1.6rem; }

  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem; }

  .pricing-card {
    padding: 2rem 1.5rem; }
    .pricing-card .pricing-card-header h3 {
      font-size: 1.5rem; }
    .pricing-card .pricing-price .price-amount {
      font-size: 2rem; } }
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out; }
  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0); }

/*# sourceMappingURL=styles.css.map */
