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

        body {
            font-family: NTSomic, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
            background: #0a0a0a;
            color: #fff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ========================================
           CODEBY ACADEMY HEADER
           ======================================== */

        /* CSS Variables - Codeby School Palette */
        :root {
          /* Основные фирменные цвета */
          --primary-green: #00ff88;
          --secondary-green: #00cc6a;
          --header-accent: #36F097;
          --header-accent-hover: #2dd882;

          /* Тёмные фоны */
          --dark-bg: #0a0a0a;
          --darker-bg: #050505;
          --card-bg: #111111;
          --card-hover: #1a1a1a;
          --mobile-menu-bg: #0e0f0f;

          /* Текст */
          --text-primary: #ffffff;
          --text-secondary: #b0b0b0;
          --text-muted: #707070;
          --header-text: rgba(255, 255, 255, 0.6);
          --header-text-hover: #ffffff;

          /* Статусы */
          --danger: #ff3366;
          --warning: #ffaa00;
          --info: #00a8ff;

          /* Акценты */
          --accent-magenta: #ff00ff;
          --telegram: #0088cc;
          --whatsapp: #25D366;

          /* Границы */
          --border-color: #222222;
          --border-subtle: rgba(255, 255, 255, 0.08);
          --border-light: rgba(255, 255, 255, 0.1);
          --border-medium: rgba(255, 255, 255, 0.2);

          /* Header */
          --header-bg: transparent;
          --header-secondary-bg: transparent;
          --header-secondary-hover: rgba(255, 255, 255, 0.1);
          --header-height: 64px;
          --header-height-mobile: 56px;
          --header-top-offset: 16px;

          /* Layout */
          --container-max: 1200px;
          --transition-fast: 0.2s ease;
          --transition-medium: 0.3s ease;
          --font-family: NTSomic, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
        }

        /* Reset for header */
        .cb-header *,
        .cb-header *::before,
        .cb-header *::after {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
        }

        /* Header Container */
        .cb-header {
          background: transparent;
          position: fixed;
          top: 0;
          left: 0;
          z-index: 1000;
          width: 100%;
          padding: var(--header-top-offset) 24px 0;
        }

        .cb-header-inner {
          max-width: var(--container-max);
          margin: 0 auto;
          padding: 0 24px;
          height: var(--header-height);
          display: flex;
          align-items: center;
          justify-content: space-between;
          background: rgba(14, 15, 15, 0.5);
          backdrop-filter: blur(12px);
          -webkit-backdrop-filter: blur(12px);
          border-radius: 12px;
          border: 1px solid rgba(255, 255, 255, 0.08);
          border-bottom-color: rgba(255, 255, 255, 0.12);
        }

        /* Logo */
        .cb-logo {
          display: flex;
          align-items: center;
          text-decoration: none;
          flex-shrink: 0;
        }

        .cb-logo svg {
          height: 36px;
          width: auto;
          transition: opacity var(--transition-fast);
        }

        .cb-logo:hover svg {
          opacity: 0.85;
        }

        /* Navigation */
        .cb-nav {
          display: flex;
          align-items: center;
          gap: 8px;
        }

        .cb-nav-list {
          display: flex;
          list-style: none;
          gap: 4px;
          margin-right: 24px;
        }

        .cb-nav-link {
          display: block;
          padding: 10px 16px;
          color: var(--header-text);
          text-decoration: none;
          font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
          font-size: 16px !important;
          font-weight: 400 !important;
          line-height: 1.75;
          border-radius: 6px;
          transition: color var(--transition-fast);
          position: relative;
          -webkit-font-smoothing: antialiased !important;
          -moz-osx-font-smoothing: grayscale !important;
        }

        .cb-nav-link::after {
          content: '';
          position: absolute;
          bottom: 6px;
          left: 50%;
          transform: translateX(-50%) scaleX(0);
          width: 70%;
          height: 2px;
          background: radial-gradient(ellipse at center, var(--primary-green) 0%, transparent 70%);
          transition: transform 0.3s ease;
        }

        .cb-nav-link:hover {
          color: var(--header-text-hover);
        }

        .cb-nav-link:hover::after {
          transform: translateX(-50%) scaleX(1);
        }

        /* Buttons */
        .cb-btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 7px 24px;
          font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
          font-size: 16px !important;
          font-weight: 400 !important;
          line-height: 1.75;
          text-decoration: none;
          border-radius: 6px;
          border: none;
          cursor: pointer;
          transition: all var(--transition-fast);
          white-space: nowrap;
          -webkit-font-smoothing: antialiased !important;
          -moz-osx-font-smoothing: grayscale !important;
        }

        .cb-btn-primary {
          background: var(--header-accent);
          color: #000000;
        }

        .cb-btn-primary:hover {
          background: var(--header-accent);
          outline: 1px solid #000000;
          outline-offset: -3px;
          box-shadow:
            0 0 20px rgba(54, 240, 151, 0.6),
            0 0 40px rgba(54, 240, 151, 0.3);
        }

        .cb-btn-secondary {
          background: transparent;
          color: var(--header-accent);
          border: 1px solid rgba(255, 255, 255, 0.2);
          margin-left: 8px;
        }

        .cb-btn-secondary:hover {
          background: var(--header-accent);
          color: #000000;
          border-color: var(--header-accent);
        }

        /* Mobile Menu Button */
        .cb-burger {
          display: none;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          width: 44px;
          height: 44px;
          background: transparent;
          border: none;
          cursor: pointer;
          padding: 0;
          z-index: 1001;
        }

        .cb-burger-line {
          display: block;
          width: 24px;
          height: 2px;
          background: var(--header-text);
          border-radius: 2px;
          transition: all var(--transition-medium);
        }

        .cb-burger-line:nth-child(1) {
          margin-bottom: 6px;
        }

        .cb-burger-line:nth-child(2) {
          margin-bottom: 6px;
        }

        /* Burger Animation - Active State */
        .cb-burger.active .cb-burger-line:nth-child(1) {
          transform: rotate(45deg) translate(5px, 6px);
        }

        .cb-burger.active .cb-burger-line:nth-child(2) {
          opacity: 0;
        }

        .cb-burger.active .cb-burger-line:nth-child(3) {
          transform: rotate(-45deg) translate(5px, -6px);
        }

        /* Mobile Styles */
        @media (max-width: 960px) {
          .cb-header {
            padding: 12px 16px 0;
          }

          .cb-header-inner {
            height: var(--header-height-mobile);
            padding: 0 16px;
            border-radius: 10px;
          }

          .cb-burger {
            display: flex;
          }

          .cb-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background: #0e0f0f;
            flex-direction: column;
            align-items: stretch;
            padding: 80px 24px 32px;
            transform: translateX(100%);
            transition: transform var(--transition-medium);
            box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
            overflow-y: auto;
          }

          .cb-nav.active {
            transform: translateX(0);
          }

          .cb-nav-list {
            flex-direction: column;
            gap: 0;
            margin-right: 0;
            margin-bottom: 24px;
          }

          .cb-nav-link {
            padding: 16px 12px;
            font-size: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
          }

          .cb-nav-link:last-child {
            border-bottom: none;
          }

          .cb-nav-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
          }

          .cb-btn {
            width: 100%;
            padding: 8px 20px;
          }

          .cb-btn-secondary {
            margin-left: 0;
          }

          /* Overlay */
          .cb-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-medium);
            z-index: 999;
          }

          .cb-overlay.active {
            opacity: 1;
            visibility: visible;
          }
        }

        @media (max-width: 400px) {
          .cb-header {
            padding: 8px 12px 0;
          }

          .cb-logo svg {
            height: 30px;
          }

          .cb-nav {
            max-width: 100%;
          }
        }

        /* Page Loading Animation */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0a0a0a;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .page-loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(0, 255, 136, 0.2);
            border-top-color: #00ff88;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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

        /* Fade-in Animations */
        .fade-in {
            opacity: 0;
            animation: fadeIn 0.6s ease forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .slide-up {
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.6s ease forwards;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stagger animation delays */
        .org-info { animation-delay: 0.1s; }
        .contacts-grid { animation-delay: 0.2s; }
        .section-divider { animation-delay: 0.3s; }
        .codeby-widget { animation-delay: 0.4s; }

        /* Ripple Effect */
        .ripple {
            position: relative;
            overflow: hidden;
        }

        .ripple::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s, opacity 0.6s;
            opacity: 0;
        }

        .ripple:active::after {
            width: 200px;
            height: 200px;
            opacity: 0.3;
            transition: 0s;
        }

        /* Pulse Animation */
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .pulse-on-hover:hover {
            animation: pulse 1s ease-in-out infinite;
        }

        /* Shine Effect */
        @keyframes shine {
            0% {
                left: -100%;
            }
            50%, 100% {
                left: 100%;
            }
        }

        .shine-effect {
            position: relative;
            overflow: hidden;
        }

        .shine-effect::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }

        .shine-effect:hover::before {
            animation: shine 1.5s ease-in-out;
        }

        /* Accessibility - Focus States */
        *:focus-visible {
            outline: 2px solid #00ff88;
            outline-offset: 2px;
            border-radius: 4px;
        }

        a:focus-visible,
        button:focus-visible {
            outline: 2px solid #00ff88;
            outline-offset: 4px;
        }

        .skip-to-content {
            position: absolute;
            top: -100px;
            left: 20px;
            background: #00ff88;
            color: #0a0a0a;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            z-index: 9999;
            transition: top 0.3s;
        }

        .skip-to-content:focus {
            top: 20px;
        }

        /* Main Content */
        .main-content {
            padding-top: 120px;
            min-height: 100vh;
            padding-bottom: 60px;
            background:
                radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.06) 0%, transparent 50%),
                #0a0a0a;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Page Header */
        .page-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .page-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }

        .page-subtitle {
            font-size: 18px;
            color: #a9b3d6;
            font-weight: 400;
        }

        /* Organization Card */
        .org-info {
            margin-bottom: 60px;
        }

        .org-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 36px 40px;
            text-align: center;
        }

        .org-card__title {
            font-size: 28px;
            font-weight: 700;
            color: #e6ecff;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .org-card__subtitle {
            font-size: 14px;
            color: rgba(169, 179, 214, 0.7);
            margin-bottom: 32px;
            font-weight: 400;
            line-height: 1.5;
        }

        .info-block {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: rgba(0, 255, 136, 0.05);
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 16px;
            padding: 24px;
            text-align: left;
            margin-bottom: 24px;
        }

        .info-block__icon {
            font-size: 40px;
            flex-shrink: 0;
        }

        .info-block__content {
            flex: 1;
        }

        .info-block__content p {
            color: #a9b3d6;
            font-size: 15px;
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .info-block__content p strong {
            color: #e6ecff;
        }

        .info-block__link {
            display: inline-flex;
            align-items: center;
            color: #00ff88;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            margin-top: 12px;
            transition: all 0.3s ease;
        }

        .info-block__link:hover {
            color: #ff3366;
            transform: translateX(5px);
        }

        .copy-btn {
            background: transparent;
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 8px;
            padding: 6px 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            margin-left: 8px;
        }

        .copy-btn:hover {
            background: rgba(0, 255, 136, 0.1);
            border-color: rgba(0, 255, 136, 0.5);
            transform: scale(1.05);
        }

        .copy-btn:active {
            transform: scale(0.95);
        }

        /* Copy All Button */
        .info-block--with-copy {
            position: relative;
        }

        .copy-all-btn {
            position: absolute !important;
            top: 12px !important;
            right: 12px !important;
            left: auto !important;
            bottom: auto !important;
            margin: 0 !important;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.1));
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 10px;
            padding: 10px 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 20px;
            z-index: 100;
        }

        .copy-all-btn:hover {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.2));
            border-color: rgba(0, 255, 136, 0.5);
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
        }

        .copy-all-btn:active {
            transform: scale(0.95);
        }

        .copyable-text {
            position: relative;
            display: inline-block;
        }

        .copy-inline-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 4px;
            padding: 2px 6px;
            margin-left: 6px;
            cursor: pointer;
            font-size: 12px;
            opacity: 0.7;
            transition: all 0.3s ease;
            vertical-align: middle;
        }

        .copy-inline-btn:hover {
            opacity: 1;
            background: rgba(0, 255, 136, 0.1);
            border-color: rgba(0, 255, 136, 0.4);
            transform: scale(1.1);
        }

        .copy-inline-btn:active {
            transform: scale(0.9);
        }

        /* Tooltips */
        [data-tooltip] {
            position: relative;
            cursor: pointer;
        }

        [data-tooltip]::before {
            content: attr(data-tooltip);
            position: absolute;
            bottom: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(-5px);
            background: rgba(1, 9, 33, 0.95);
            color: #fff;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 13px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 1000;
            border: 1px solid rgba(0, 255, 136, 0.3);
        }

        [data-tooltip]::after {
            content: '';
            position: absolute;
            bottom: calc(100% + 2px);
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: rgba(1, 9, 33, 0.95);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        [data-tooltip]:hover::before {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* Hide tooltip arrow for buttons */
        button[data-tooltip]::after {
            display: none;
        }

        /* Contacts Grid */
        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 60px;
        }

        .contact-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 255, 136, 0.3);
            box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
        }

        .contact-card__icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .contact-card__title {
            font-size: 20px;
            font-weight: 700;
            color: #e6ecff;
            margin-bottom: 20px;
        }

        .contact-card__content {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .contact-link {
            color: #a9b3d6;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .contact-link--primary {
            color: #00ff88;
            font-weight: 600;
            font-size: 18px;
        }

        .contact-link:hover {
            color: var(--primary-green);
        }

        .contact-card .contact-divider {
            color: #a9b3d6;
            font-size: 14px;
            margin: 4px 0;
            text-align: center;
            display: block;
            width: 100%;
        }

        .contact-note {
            color: #a9b3d6;
            font-size: 13px;
            margin-top: 8px;
            font-style: italic;
        }

        .contact-address {
            color: #a9b3d6;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .map-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #00ff88;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            padding: 10px 16px;
            border: 1px solid rgba(0, 255, 136, 0.3);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .map-link:hover {
            background: rgba(0, 255, 136, 0.1);
            border-color: rgba(0, 255, 136, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
        }

        /* Section Divider */
        .section-divider {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-divider::before,
        .section-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
        }

        .section-divider__icon {
            font-size: 24px;
            margin: 0 20px;
            filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #0a0a0a;
            border: none;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
        }

        .back-to-top:active {
            transform: translateY(-2px);
        }

        /* Copy Notification */
        .copy-notification {
            position: fixed;
            bottom: 90px;
            right: 30px;
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #fff;
            padding: 16px 24px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            pointer-events: none;
            z-index: 1000;
        }

        .copy-notification.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Widget Styles */
        .codeby-widget {
            background: #0a0a0a;
            color: #fff;
            font-family: NTSomic, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
            margin-top: 80px;
        }

        .codeby-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: inherit;
        }

        .codeby-widget .mw {
            width: 100%;
            max-width: 1330px;
            margin: 0 auto;
            position: relative;
        }

        .codeby-widget .ecosystem {
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .codeby-widget .ecosystem__header {
            text-align: center;
            margin-bottom: 42px;
            position: relative;
            z-index: 1;
        }

        .codeby-widget .ecosystem__header .h2 {
            margin: 0 0 12px;
            font-size: clamp(28px, 3vw, 42px);
            line-height: 1.2;
            font-weight: 800;
        }

        .codeby-widget .ecosystem__header .h2 b {
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .codeby-widget .ecosystem__subtitle {
            color: #a9b3d6;
            font-size: 18px;
            margin-top: 12px;
        }

        .codeby-widget .ecosystem__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .codeby-widget .ecosystem__card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 32px 28px;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            display: block;
            text-decoration: none;
        }

        .codeby-widget .ecosystem__card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .codeby-widget .ecosystem__card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 255, 136, 0.3);
            box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
        }

        .codeby-widget .ecosystem__card:hover::before {
            opacity: 1;
        }

        .codeby-widget .ecosystem__card--active {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.12) 0%, rgba(0, 255, 136, 0.08) 100%);
            border-color: rgba(0, 255, 136, 0.4);
        }

        .codeby-widget .ecosystem__card--active::before {
            opacity: 1;
        }

        .codeby-widget .ecosystem__badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #0b0f1d;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .codeby-widget .ecosystem__icon {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1;
        }

        .codeby-widget .ecosystem__card-title {
            font-size: 24px;
            font-weight: 700;
            color: #e6ecff;
            margin: 0 0 12px 0;
        }

        .codeby-widget .ecosystem__card-desc {
            color: #a9b3d6;
            font-size: 15px;
            line-height: 1.6;
            margin: 0 0 24px 0;
        }

        .codeby-widget .ecosystem__card-link {
            display: inline-flex;
            align-items: center;
            color: #00ff88;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .codeby-widget .ecosystem__card-link:hover {
            color: #ff3366;
            transform: translateX(5px);
        }

        .codeby-widget .footer-info {
            padding: 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
        }

        .codeby-widget .footer-info__container {
            max-width: 1330px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .codeby-widget .footer-info__contacts {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .codeby-widget .footer-info__contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: #a9b3d6;
            line-height: 1.5;
        }

        .codeby-widget .footer-info__contact-label {
            color: #00ff88;
            font-weight: 600;
            min-width: 60px;
        }

        .codeby-widget .footer-info__contact-item a {
            color: #e0e1ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .codeby-widget .footer-info__contact-item a:hover {
            color: var(--primary-green);
        }

        .codeby-widget .footer-info__phone-group {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .codeby-widget .footer-info__phone-separator {
            color: #a9b3d6;
        }

        .codeby-widget .footer-info__phone-note {
            color: #a9b3d6;
            font-size: 13px;
        }

        .codeby-widget .footer-info__nav {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .codeby-widget .footer-info__nav-link {
            font-size: 14px;
            color: #e0e1ff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 2px;
        }

        .codeby-widget .footer-info__nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            transition: width 0.3s ease;
        }

        .codeby-widget .footer-info__nav-link:hover {
            color: #00ff88;
        }

        .codeby-widget .footer-info__nav-link:hover::after {
            width: 100%;
        }

        .codeby-widget .footer-copyright {
            max-width: 1330px;
            margin: 0 auto;
            padding: 30px 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
        }

        .codeby-widget .footer-copyright p {
            font-size: 16px;
            line-height: 20px;
            color: #a9b3d6;
            text-align: center;
        }

        /* Telegram Widget */
        .telegram-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
        }

        .telegram-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: #0088cc;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
            transition: all 0.3s ease;
            position: relative;
            animation: telegram-pulse 2s infinite;
        }

        .telegram-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
            animation: none;
        }

        .telegram-button:active {
            transform: scale(0.95);
        }

        .telegram-icon {
            width: 32px;
            height: 32px;
            fill: #fff;
        }

        .telegram-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(1, 9, 33, 0.95);
            color: #fff;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
            border: 1px solid rgba(0, 255, 136, 0.3);
        }

        .telegram-tooltip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent;
            border-left-color: rgba(1, 9, 33, 0.95);
        }

        .telegram-button:hover .telegram-tooltip {
            opacity: 1;
            visibility: visible;
        }

        @keyframes telegram-pulse {
            0% {
                box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(0, 136, 204, 0.6), 0 0 0 8px rgba(0, 136, 204, 0.1);
            }
            100% {
                box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #00ff88;
        }

        html {
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.2) #0a0a0a;
        }

        @media (max-width: 768px) {
            .main-content {
                padding-top: 100px;
            }

            .org-card {
                padding: 28px 20px;
            }

            .info-block {
                flex-direction: column;
                text-align: center;
            }

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

            .section-divider {
                margin: 60px auto;
            }

            .section-divider__icon {
                font-size: 20px;
                margin: 0 16px;
            }

            .telegram-widget {
                bottom: 20px;
                right: 20px;
            }

            .telegram-button {
                width: 50px;
                height: 50px;
            }

            .telegram-icon {
                width: 26px;
                height: 26px;
            }

            .telegram-tooltip {
                display: none;
            }

            .codeby-widget .ecosystem {
                padding: 30px 0;
            }

            .codeby-widget .ecosystem__grid {
                grid-template-columns: 1fr;
            }

            /* Footer mobile styles */
            .codeby-widget .footer-info {
                padding: 20px 0;
            }

            .codeby-widget .footer-info__container {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .codeby-widget .footer-info__contacts {
                display: flex;
                flex-direction: column;
                gap: 8px;
                padding-left: 20px;
            }

            .codeby-widget .footer-info__contact-item {
                display: flex;
                align-items: baseline;
                gap: 8px;
            }

            .codeby-widget .footer-info__contact-label {
                min-width: auto;
                flex-shrink: 0;
            }

            .codeby-widget .footer-info__phone-group {
                display: flex;
                flex-direction: column;
                gap: 4px;
                align-items: flex-start;
            }

            .codeby-widget .footer-info__phone-group a {
                display: inline;
            }

            .codeby-widget .footer-info__phone-separator {
                display: none;
            }

            .codeby-widget .footer-info__phone-note {
                font-size: 12px;
            }

            .codeby-widget .footer-info__nav {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding-left: 20px;
            }

            .codeby-widget .footer-copyright {
                padding: 16px 20px 0;
                margin-top: 16px;
            }

            .codeby-widget .footer-copyright p {
                font-size: 14px;
                text-align: center;
            }
        }

/* ========================================
   MODAL FORM STYLES
   ======================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: #1a1a1a;
    border: 2px solid var(--primary-green);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
}

.modal-form .form-group {
    margin-bottom: 16px;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.2s;
}

.modal-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-form input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.15);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-green);
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    line-height: 1.4;
    text-align: left;
}

.form-checkbox label a {
    color: var(--primary-green);
    text-decoration: underline;
}

.form-checkbox label a:hover {
    color: var(--secondary-green);
}

.form-submit {
    width: 100%;
    padding: 16px 32px;
    background: #4b5563;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 16px;
    margin-bottom: 12px;
}

.form-submit:not(.form-submit-disabled) {
    background: var(--primary-green);
    color: #000000;
}

.form-submit:not(.form-submit-disabled):hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.form-submit-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 24px;
}

/* Contact Us Block */
.contact-us-block {
    margin-top: 24px;
}

.contact-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.contact-divider-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-us-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 16px;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

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

.telegram-btn {
    background: #0088cc;
    color: #ffffff;
}

.telegram-btn:hover {
    background: #006699;
}

.whatsapp-btn {
    background: #25D366;
    color: #ffffff;
}

.whatsapp-btn:hover {
    background: #1DA851;
}

/* Success Modal */
.success-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

.success-modal-overlay.active {
    display: flex;
}

.success-modal-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d1f0d 100%);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: successPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.success-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: particleFly 2s ease-out forwards;
}

.success-particle:nth-child(1) { left: 10%; top: 50%; animation-delay: 0s; }
.success-particle:nth-child(2) { left: 30%; top: 50%; animation-delay: 0.1s; }
.success-particle:nth-child(3) { left: 50%; top: 50%; animation-delay: 0.2s; }
.success-particle:nth-child(4) { left: 70%; top: 50%; animation-delay: 0.3s; }
.success-particle:nth-child(5) { left: 90%; top: 50%; animation-delay: 0.4s; }
.success-particle:nth-child(6) { left: 20%; top: 50%; animation-delay: 0.15s; }
.success-particle:nth-child(7) { left: 60%; top: 50%; animation-delay: 0.25s; }
.success-particle:nth-child(8) { left: 80%; top: 50%; animation-delay: 0.35s; }

@keyframes particleFly {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0);
    }
}

.success-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.success-icon-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.success-icon {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 1;
}

.success-circle {
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 2;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: drawCircle 0.6s ease forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

.success-check {
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.4s ease forwards 0.5s;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.success-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.success-lead-id {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.success-lead-id span {
    color: var(--primary-green);
    font-weight: 600;
}

.success-button {
    background: var(--primary-green);
    color: #000000;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.success-button:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

/* Honeypot field - hidden from users */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-container {
        padding: 30px 20px;
    }

    .modal-subtitle {
        font-size: 20px;
    }

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

    .success-modal-container {
        padding: 40px 20px;
    }

    .success-title {
        font-size: 24px;
    }
}

/* ========================================
   FINAL CTA SECTION (Остались вопросы?)
   ======================================== */

.final-cta {
    background: linear-gradient(135deg, #0a1612 0%, #0d1f1a 50%, #0a1612 100%);
    padding: 80px 20px;
    margin-top: 0;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.inline-form-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 40px;
}

.inline-form .form-group {
    margin-bottom: 16px;
}

.inline-form input[type="text"],
.inline-form input[type="email"],
.inline-form input[type="tel"],
.inline-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s;
}

.inline-form input::placeholder,
.inline-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.inline-form input:focus,
.inline-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.15);
}

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

.schedule-info {
    margin-top: 24px;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-align: center;
}

.schedule-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.schedule-icon {
    font-size: 16px;
    display: inline-block;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 60px 20px;
    }

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

    .cta-subtitle {
        font-size: 16px;
    }

    .inline-form-container {
        padding: 24px 16px;
    }
}

/* ========================================
   PRIMARY CONTACT CARDS
   ======================================== */

.primary-contacts {
    margin-bottom: 40px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

button.primary-contact-card {
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.primary-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 255, 136, 0.03) 100%);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 16px;
    padding: 24px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-contact-card:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.15);
}

.primary-contact-card__icon {
    font-size: 36px;
    flex-shrink: 0;
}

.primary-contact-card__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.primary-contact-card__label {
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-contact-card__value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.primary-contact-card__note {
    font-size: 13px;
    color: #a9b3d6;
}

@media (max-width: 768px) {
    .primary-contact-card {
        padding: 20px;
        gap: 16px;
    }

    .primary-contact-card__icon {
        font-size: 28px;
    }

    .primary-contact-card__value {
        font-size: 18px;
    }
}

/* ========================================
   ACCORDION STYLES
   ======================================== */

.accordion-item {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
    transition: background 0.2s ease;
}

.accordion-header:hover {
    background: rgba(0, 255, 136, 0.08);
}

.accordion-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #e6ecff;
}

.accordion-arrow {
    font-size: 12px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 20px 20px;
}

.accordion-content p {
    color: #a9b3d6;
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.accordion-content p strong {
    color: #e6ecff;
}

.accordion-header .copy-all-btn {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    padding: 6px 10px;
    font-size: 14px;
    margin-left: auto;
    margin-right: 8px;
}

/* ========================================
   FORM LABELS (Floating)
   ======================================== */

.form-group {
    position: relative;
}

.form-group label.floating-label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
    padding: 0 4px;
}

.form-group input:focus + label.floating-label,
.form-group input:not(:placeholder-shown) + label.floating-label {
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--primary-green);
    background: #1a1a1a;
}

.inline-form .form-group input:focus + label.floating-label,
.inline-form .form-group input:not(:placeholder-shown) + label.floating-label {
    background: #0d1612;
}

/* ========================================
   ERROR MESSAGE CONTRAST IMPROVEMENT
   ======================================== */

.email-error,
.phone-error {
    display: none;
    color: #ff6b6b !important;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 6px;
    padding: 6px 10px;
    background: rgba(255, 107, 107, 0.1);
    border-left: 3px solid #ff6b6b;
    border-radius: 0 4px 4px 0;
}

.required-mark {
    color: var(--danger);
}

/* Honeypot field - hidden from users */
input[name="website"] {
    position: absolute;
    left: -9999px;
}

/* ========================================
   SIMPLIFIED FOOTER
   ======================================== */

.site-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-nav__link {
    color: #a9b3d6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.footer-nav__link:hover {
    color: var(--primary-green);
}

.footer-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.footer-nav__link:hover::after {
    width: 100%;
}

.site-footer .footer-copyright {
    color: #707070;
    font-size: 14px;
    margin: 0;
    padding: 0;
    border: none;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 20px;
    }

    .footer-nav {
        gap: 16px;
    }

    .footer-nav__link {
        font-size: 13px;
    }
}
